Build a Shopping Cart - Step 32

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

You need to include a pair of empty parentheses after ShoppingCart.

1 Like

Ah. Thank you. I don’t know how I missed that. :person_facepalming:

1 Like