Build a Final Exams Table - Step 9

Tell us what’s happening:

Step 9
Now it is time to add two more students to the table.

Following the same pattern as the previous step, add a second student table row. Use the following data for the table data elements:

Last Name: Doe
First Name: Samantha
Grade: 92
For the third student table row, use the following data for the table data elements:

Last Name: Rodriguez
First Name: Marcus
Grade: 88

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Calculus Final Exams Table</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <table>
      <caption>
        Calculus Final Exam Grades
      </caption>

      <thead>     
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>

      <tbody>
        <tr>
          <td>Davis</td>
          <td>Alex</td>
          <td>54</td>
        </tr>

<!-- User Editable Region -->

    <tbody>
  <tr>
    <td>Davis</td>
    <td>Alex</td>
    <td>54</td>
  </tr>
  <tr>
    <td>Doe</td>
    <td>Samantha</td>
    <td>92</td>
  </tr>
  <tr>
    <td>Rodrigues</td>
    <td>Marcus</td>
    <td>88</td>
  </tr>
</tbody>    

<!-- User Editable Region -->

      </tbody>
    </table>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Final Exams Table - Step 9
https://www.freecodecamp.org/learn/full-stack-developer/workshop-final-exams-table/step-9strong text

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Same one can help me I’m confuse this
Step 9

Now it is time to add two more students to the table.

Following the same pattern as the previous step, add a second student table row. Use the following data for the table data elements:

  • Last Name: Doe
  • First Name: Samantha
  • Grade: 92

For the third student table row, use the following data for the table data elements:

  • Last Name: Rodriguez
  • First Name: Marcus
  • Grade: 88

in your own words what issue are you having?

also did you notice you have repeated code?