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

Tell us what’s happening:

Step 29 auto coder is saying this is wrong, why ?

Your code so far

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

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.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

Challenge Information:

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

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

The name should be before the ‘(Captain)’ identification
for example Robert Ross (Captain)

1 Like

Thanks for your reply , When I added code in the back ticks previously I got scolded. Do you have a video about how to do this?

I have the gif posted before

You can use this general pattern:

```
Code here
```

So I just created a new post on step 40 using back ticks still getting warning saying I exceeded max length even though it is only 3 lines of code.
Not seeing a gif…

the gif in my previous post

how are you getting this warning?
Do you mean the one in the template? that’s not you exceeding the length, that’s the template telling you it can’t get all the code from the challenge, and that you need to write the code yourselc

1 Like

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