Feeling Stuck on how to create a set of checkboxes

Tell us what’s happening:

I have followed the hints and video tutorial…I feel like I’m not seeing my own errors. Can anyone help me?

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>
  <label for="loving"><input id="loving"type="checkbox" name"personality">loving</label>
  <label for="sweet"><input id="sweet"type="checkbox" name"personality">sweet</label>
  <label for="relaxed"><input id="relaxed" type="checkbox" name"personality">relaxed</label>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15.

Challenge: Create a Set of Checkboxes

Link to the challenge:

The failing test says;
Your checkboxes should be given the name attribute of personality.

When specifying an attribute you have to set it equal to something. Look at the example and see if you can spot your typo (in this case, omission).

Thank you! I knew I needed a fresh pair of eyes to see my error.