Tell us what’s happening:
I need to instantiate a new ShoppingCart
object. The error message is as follows:
You should use the new keyword to instantiate a new ShoppingCart object.
The problem seems to be the new
keyword, but I have one, just like the example they give in the instructions. I don’t know why the test is failing. Please help me understand.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
const cart = new ShoppingCart
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a Shopping Cart - Step 32