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

Tell us what’s happening:

Not really sure where the problem lies. I should be quite close though.

Any advices or tips are greatly appreciated.
Thanks in advance!

Your code so far

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

/* 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
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

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

Never mind I figured it out. Just a typo on ID fixed it.