this is my code:
const renderSongs = (array) => {
const songsHTML = array.map((song)=> {
return `<li id="song-${song.id}" class="playlist-song"> </li>`>
})
};
I’m not too sure where I’m going wrong. I have my backticks with the correct syntax, but when I click ‘check code’, it doesn’t give me an error or tell me I’m correct, which from previous steps, it’ll usually do it if I’m wrong somewhere.
any help is appreciated, thank you in advance!