Learn Modern JavaScript Methods by Building Football Team Cards - Step 25

Tell us what’s happening:

The instructions is to add the map method to the existing array, which will then take an empty callback function. Then, am supposed to use the addition assignment += operator to assign the new array to playerCards.innerHTML . I have tried several times, but it does not go through, and insists that the .map() method should take an empty callback function. What am I not getting right here, thanks.

Your code so far

 arr.map(function(){
    playerCards.innerHTML += playerCards});

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

 arr.map(function(){
    playerCards.innerHTML += playerCards});

Your browser information:

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

Challenge Information:

Learn Modern JavaScript Methods by Building Football Team Cards - Step 25

this is not an empty callback function

the new array is the one returned by map, so you assign your

to something

1 Like

Thanks for this, was able to figure it out. I was almost forgetting what an empty callback function is, referenced the MDN docs…

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.