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

Tell us what’s happening:

Hi all, I’ve been stuck on this for way too long. I need to make a template literal with an empty div. What is the error here?

Your code so far

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

/* file: styles.css */

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


  playerCards.innerHTML += arr.map(
    ({ name, position, number, isCaptain, nickname }) => {
      `<div class="player-card"></div>`;
    }
  );


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

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

you will need to return a template literal

Always watch out for the return keyword in the instructions

1 Like