Radio Button not working

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><input type="radio" name="indoor-outdoor">indoor</label>
<label><input type="radio" name="indoor-outdoor">outdoor</label>
<br>
<label><input type="checkbox" name="personality" value="loving"> loving</label>
<label><input type="checkbox" name="personality" value="lazy"> lazy</label>
<label><input type="checkbox" name="personality" value="energetic"> energetic</label><br>

<textarea placeholder="Cat photo URL"></textarea><br>
<button type="submit">Submit</button>
</form>
</main>

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes

I checked what u have done so far things is that the lesson is asking u to add value to both checkboxes AND the radio buttons.
Where are your value’s onto the radio’s ones?

 <form action="/submit-cat photo">

<label>
  <input type="radio" value="indoor" name="indoor-outdoor">indoor
  </label>
<label><input type="radio" value="outdoor" name="indoor-outdoor">outdoor
</label>
<br>
  <label><input type="checkbox" name="personality" value="loving"> loving</label>
  <label><input type="checkbox" name="personality" value="lazy"> lazy</label>
  <label><input type="checkbox" name="personality" value="energetic"> energetic</label><br>

  <textarea placeholder="Cat photo URL"></textarea><br>

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

You changed the label loving orignal it was Loving with a headletter same as all the others.
the value is are without captials
This is what I did first time I did’t pass the lesson and can’t find it
1 i opend up a diffrend browser and reseted the lesson
2 I copy pasted the value=“X” then changed the lines indoor/outdoor lazy/loving/energetic