Honestly i have tried all that i can i really do not know what to do anymore at this stage,and it’s the same step ["Every radio button group should have at least 2 radio buttons]
Please help
**Your code so far**
/* file: index.html */
<link rel="stylesheet" href="styles.css">
<h1 id="title">Survey Form</h1>
<p id="description">Thank you for taking time to help us improve the platform</p>
<form id="survey-form" required>
<input placeholder="Enter your name" required id="name" type="text">name</input>
<input placeholder="Enter your email" required id="email" type="email">email</input>
<input placeholder="Enter your number" id="number" min="13" max="150" type="number">number</input>
<label id="name-label">Name</label>
<label placeholder="Enter your email" id="email-label">Email</label>
<label palceholder="" id="number-label">Number</label>
<select id="dropdown">
<option></option>
<option></option>
</select>
<fieldset>
<legend>Group</legend>
<div>
<input value="radio1" type="radio" name="click1"></input>
<label for="radio1">radio1</radio>
<input value="radio2" type="radio" name="click2"></input>
<label for="radio2">radio2</label>
</fieldset>
<fieldset>
<legend>Group2</legend>
<div>
<input value="radio3" type="radio" name="click3"></input>
<label for="radio3">radio3</label>
<input value="radio4" type="radio" name="click4"></input>
<label for="radio4">radio4</label>
</div>
</fieldset>
<input type="checkbox" value="check1"></input>
<input type="checkbox" value="check2"></input>
<textarea></textarea>
<input type="submit" id="submit"></input>
</form>
/* file: styles.css */
**Your browser information:**
User Agent is: Mozilla/5.0 (X11; Linux i686; rv:91.0) Gecko/20100101 Firefox/91.0
Challenge: Survey Form - Build a Survey Form
Link to the challenge: