Tell us what’s happening:
The instruction is very clear as it is
"Below your existing paragraph elements, add another paragraph element with the text Nickname: . "
Your code so far
`
<div class="player-card">
<h2>${name} ${isCaptain ? "(Captain)" : ""}</h2>
<p>Position: ${position}</p>
<p>Number: ${number}</p>
<p>Nickname: ${nickname}</p>
</div>
`;
But I keep on getting this error
You should add a new paragraph element with the text Nickname: .
Your new p element should come after the h2 element.
Did I miss anything in here?
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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Challenge Information:
Learn Modern JavaScript Methods By Building Football Team Cards - Step 33