Build a Hotel Feedback Form - Step 14

状況を説明しましょう:

“You should have a number input below your label element.“is displayed but I don’t know what to do.
Could someone please confirm about step14 in “Build a Hotel Feedback Form”

Age (optional):

< input type=“numder” id=“age” name=“age” min=“3” max=“100”>

現状のコード

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hotel Feedback Form</title>
  </head>
  <body>
    <header>
      <h1>Hotel Feedback Form</h1>
      <p>
        Thank you for staying with us. Please provide feedback on your recent
        stay.
      </p>
    </header>
    <main>
      <form method="POST" action="https://hotel-feedback.freecodecamp.org">
        <fieldset>
          <legend>Personal Information</legend>
          <label for="full-name">Name (required):</label>
          <input type="text" id="full-name" name="name" placeholder="e.g., John Doe" required size="20">

          <label for="email">Email address (required):</label>
          <input
            placeholder="example@email.com"
            required
            id="email"
            type="email"
            name="email"
            
          />

<!-- User Editable Region -->

          <label for="age">
          Age (optional):
          </label>
          <input type="numder" id="age" name="age" min="3" max="100">

<!-- User Editable Region -->

        </fieldset>
      </form>
    </main>
  </body>
</html>

ブラウザ情報:

ユーザーエージェント: Mozilla/5.0 (iPad; CPU OS 26_2_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/144.0.7559.95 Mobile/15E148 Safari/604.1

チャレンジの情報:

Build a Hotel Feedback Form - Step 14

double check this type