Build a Survey Form - Build a Survey Form

Tell us what’s happening:

Hi dears!
I have been stuck on question 38 for a while, and I could not solve it. So, I would pleasure if you help me .
Question 38 says this: Every radio button group should have at least 2 radio buttons.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Survey Form</title>
  </head>
  <body>
    <h1 id="title">Your Experience with YouTube</h1>
<p id="description">Thank you for taking the time to share your thoughts! This survey aims to understand people's experiences with YouTube and its content.</p> 

<form id="survey-form">
  <fieldset>
    <label id="name-label" for="name">Name:</label>
      <input type="text" id="name" name="sahra" placeholder="name" required>
      </fieldset>
    
    <fieldset>
      <label id="email-label" for="email">Email</label>
      <input type="email" id="email" name="name" placeholder="sahra11@gmail.com" required>
      </fieldset>

      <fieldset>
        <label id="number-label" for="number">Age</label>
        <input type="number" id="number" name="number" placeholder="18" min="10" max="100">
        </fieldset>
          <select id="dropdown" name="usage">
              <label for="dropdown">How often do you use YouTube?</label>
            <option value="daily">Daily</option>
            <option value="weekly">Weekly</option>
            <option value="rarely">Rarely<option>
              </select>
              <p>What do you primarily watch on YouTube?</p>
              <input type="radio" id="educational videos" name="platform" value="educational videos">
              <label for="educational videos">Educational videos
              </label>
              <input type="checkbox" id="other" name="entertainment (music, movies, TV clips)" value="other">
              <label for="other">Entertainment (music, movies, TV clips)</label>
              <input type="checkbox" id="other" name="gaming content" value="other">
              <label for="other">Gaming content</label>
              <input type="radio" id="other" name="other" value="other">
              <label for="other">Other</label>
              <p>What is your preferred video platform?</p>
              <input type="radio" id="youtube" name="video-platform" value="youtube">
              <label for="youtube">YouTube</label>
              <input type="radio" id="vimeo" name="video-platform" value="vimeo">
              <label for="vimeo">Vimeo</label>
              
              <label for="comments">Additional Comments:</label>
              <textarea id="comments" name="comments" placeholder="Write your feedback here">
              </textarea>
              <button id="submit" type="submit">Submit</button>
</form>
  </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 Survey Form - Build a Survey Form

To create a group of radio buttons, all must share the same name attribute value. This allows only one in the group to be selected at any time.