FootballCards step29 "Spot the mistake"

Hello, I am not sure why my code is not passing any help would be appreciated greatly.

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

Please post the link to the step. Also, please talk to us about how you find the error message or instructions confusing. Thanks

Before the ${name} expression, add a new embedded expression.

Use return before card.

MOD EDIT: SOLUTION REMOVED

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.