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

Tell us what’s happening:

I have called the .map( ) method on the arr parameter, then added the callback function to the .map() method and assigned the array to the playerCards.innerHTML, yet I am still getting this error for some reason.

Your code so far

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

/* file: styles.css */

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

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


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

Challenge Information:

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

this variable is what is getting the new array.
It needs to be written on the left side of the assignment operator.
The arr.map is written on the right as it creates the array.