Build a Tech Conference Schedule Table - Step 9

Tell us what’s happening:

why there is a error of “you should hava a second tr inside tbody” when it is actually inside tbody

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Tech Conference 2025 Schedule</title>
</head>
<body>
  <h1>Tech Conference 2025 Schedule</h1>

  <table>
    <caption>Schedule by Track and Time</caption>

    <thead>
      <tr>
        <th scope="col">Time</th>
        <th scope="col">Track A</th>
        <th scope="col">Track B</th>
        <th scope="col">Track C</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <th scope="row">9:00 AM</th>
        <td>Keynote: Tech Future</td>
        <td>Intro to Web Dev</td>
        <td>UX for All</td>
      </tr>

<!-- User Editable Region -->

  <tr>
    <th scope="row">9:00 AM</th>
    <td>Keynote: Tech Future</td>
    <td>Intro to Web Dev</td>
    <td>UX for All</td>
  </tr>
  <tr>
    <th scope="row">10:00 AM</th>
    <td>Accessibility Deep Dive</td>
    <td>CSS for Beginners</td>
    <td>Inclusive Design Principles</td>
  </tr> 
</tbody>


<!-- User Editable Region -->

    
  </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/141.0.0.0 Safari/537.36

Challenge Information:

Build a Tech Conference Schedule Table - Step 9

you have three tr when it expect two, you have a duplicated tr

oops , i didnt notice btw tks !