Learn Basic OOP by Building a Shopping Cart - Step 12

Tell us what’s happening:

Task is to create Price and Category.What is wrong?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

products.forEach(
  ({ name, id, price, category }) => {
    dessertCards.innerHTML += `
      <div class="dessert-card">
        <h2>${name}</h2>
        <p class="dessert-price">"$"${price}</p>
        <p class="product-category">"Category: "${category}</p>
        

      </div>
    `;
  }
);

// 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/139.0.0.0 Safari/537.36 Edg/139.0.0.0

Challenge Information:

Learn Basic OOP by Building a Shopping Cart - Step 12

If you look at the preview, does it look as it should? Does anything stand out or look out of place?