Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

The last challenge keeps failing me. I have checked and rechecked and do not see where i am messing up

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>Book Catalog</title>
</head>

<body>
  <table>
    <thead>
      <tr>
        <th>Title</th>
        <th>Author</th>
        <th>Genre</th>
        <th>Publication Year</th>
      </tr>
    <tbody>
      <tr>
        <td>Storm Front</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2000</td>
      </tr>
        <td>Fool Moon</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2001</td>
      <tr>
        <td>Grave Peril</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2001</td>        
      </tr>
      <tr>
        <td>Summer KNight</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2002</td>        
      </tr>
      <tr>
        <td>Death Masks</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2003</td>        
      </tr>
      <tr>
        <td>Blood Rites</td>
        <td>Jim Butcher</td>
        <td>Fantasy/Mystery</td>
        <td>2004</td>        
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <td colspan="4">Total Books: [number of books in your table][6]</td>
      </tr>
    </tfoot>
  </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 Book Catalog Table - Build a Book Catalog Table

I have found the solution. I had to remove the brackets around the number. Simple solution