Pass in a callback function to the map() method. The callback function should take song as a parameter, use the arrow function syntax, and have an empty body.
const songsHTML = array.map((song) => {});
The callback function of your map() method should use arrow function syntax.
I don’t know why can’t get past this step, I have tried everything.
Someone should help look into it.
Can you link to the lesson and specific step you are on when creating a post about a specific project issue? It will help others to better help you.
I do not see any issues with that, it looks like it should pass. You should try using the ‘reset lesson’ button (it will only reset the current step you are on) and try again. You could also see if it accepts song as the parameter without the parantheses (this is only valid when you have exactly one parameter).
Above is the original code of this challenge step. Now you need a song parameter (song) within your map() method and aero => Syntex and a empty pair of brackets {}. This called call back function. @oyelajakenny