Build a Music Instrument Filter - Step 12

Tell us what’s happening:

I am unable to pass this step. Kindly help me. This is error mrssage:
instrumentCards(“all”) should return an array with ten strings representing the instrument cards for all the instruments on your page.
6. instrumentCards(“woodwinds”) should return an array with three strings representing the instrument cards for the woodwind instruments on your page.
7. instrumentCards(“brass”) should return an array with three strings representing the instrument cards for the brass instruments on your page.

Your code so far

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

/* file: styles.css */

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

function instrumentCards(instrumentCategory) {
  const instruments =
    instrumentCategory === "all"
      ? instrumentsArr
      : instrumentsArr.filter(
          ({ category }) => category === instrumentCategory
        );

  const htmlStrings = instruments.map(instrument => {
    return `<div class="card"><h2>${instrument.name}</h2><p>$${instrument.price}</p></div>`;
  });
  return htmlStrings;

}



// 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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Music Instrument Filter - Step 12
https://www.freecodecamp.org/learn/full-stack-developer/workshop-music-instrument-filter/step-12

Double check the properties in instruments, please.

I solved it. thank you!