Code is a accepting after I run the code on fcc challenges

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
<label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>

<label for="abc"><input id="abc" type="radio" name="personality"> abc</label>

  <label for="pqr"><input id="pqr" type="radio" name="personality"> pqr</label>

<label for="mno"><input id="mno" type="radio" name="personality"> mno</label><br> 
 

  <input type="text" placeholder="cat photo URL" required>


  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.92 Safari/537.36.

Challenge: Create a Set of Checkboxes

Link to the challenge:

what’s your question?
please tell us what’s happening

I am solving this task on fcc:
Add to your form a set of three checkboxes. Each checkbox should be nested within its own label element. All three should share the name attribute of personality .
I think I added them correctly and output screen also showing correct but this test is not passsing showing error

you do not have any checkbox in your code

the input elements in your code have all type="radio"

Oh shit I think I need sleep now lol . Btw thanks now it is correct.