Build a Music Instrument Filter - Step 13

Tell us what’s happening:

Need help getting past step 13. i have tried going through it but staying stuck. on preview it works but not passing

Your code so far

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

/* file: styles.css */

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

selectContainer.addEventListener("change", () => {
  const filteredCards = instrumentCards(selectContainer.value);
  productsContainer.innerHTML = filteredCards.join('');
});

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

Challenge Information:

Build a Music Instrument Filter - Step 13

…set the inner HTML of productsContainer to the result of calling instrumentCards with the selected category option.

please read again the instructions. is that what you’ve done?