Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I can’t seem to get this test right. I see I have ten stars followed by a numeric value in parenthesis, but the test shows that I don’t. Could anyone give some advice to why it failing me?

The span element inside the rating paragraph should have ten stars, either filled in (:star:) or empty (☆), followed by a numerical value in parentheses after the span

Your code so far

<!DOCTYPE html>
 <html lang="en">
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>Movie Review</title>
 </head>
<main>
    <h1>Rise Beyond</h1>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Rise Beyond">
    <p>A movie about rising beyond.</p>
    <body>
    <p><strong>Movie Rating:</strong><span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐☆ (9)</span></p>
    <h2>Cast Members</h2>
        <ul>
            <li><strong>James Holloway</strong> as Ethan Carter</li>
            <li><strong>Captain Seapants</strong> as Big Al</li>
            <li><strong>Will Ferrel</strong> as Conway Twitty</li>
        </ul>
    </body>
</main>
</html>

Your browser information:

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

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-movie-review-page/design-a-movie-review-page

Read that again carefully. Also, is your numerical value in parentheses formatted per the instructions?

Thank you! I understood what you meant and passed!