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

Tell us what’s happening:

Sorry, your code does not pass. Hang in there.

You should use document.getElementById() and pass in song-${userData?.currentSong?.id}

Please help, i don’t really understand what am i doing wrong?

Your code so far

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

/* file: styles.css */

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

const highlightCurrentSong = () => {
  const playlistSongElements = document.querySelectorAll(".playlist-song");
  const songToHighlight = document.getElementById(`song-${userData?.currentSong.id}`);
  
};

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

Challenge Information:

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

Hi @Asive

You should use document.getElementById() and pass in song-${userData?.currentSong?.id} .

One character is missing from your code.

Happy coding

Thank You!
Don’t know how i missed that.

1 Like