Learn Basic String and Array Methods by Building a Music Player - Step 13

Tell us what’s happening:

Hello! I completed the lesson and I’m pretty sure my solution is correct, but the test still fails. I’ve checked my code and it seems fine. Could someone take a look and let me know if there’s a bug or if I missed something? Thanks in advance!

Your code so far

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

/* file: styles.css */

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

const printMessage = org => {
  console.log(`${org} is awesome`);
};

printMessage("freeCodeCamp");


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

Challenge Information:

Learn Basic String and Array Methods by Building a Music Player - Step 13

Inside that console statement, add the template literal ${org} is awesome!.

Be sure that you typed the phrase correctly.