Indoor/Outdoor Tests

When I run the tests it keeps saying " One of your radio buttons should have the label indoor

. One of your radio buttons should have the label outdoor"
As far as I can tell that’s what my code says. Am I making some kind of syntactical error or is there something wrong with the tests?

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">
			<input type="text" placeholder="cat photo URL" required>
			<label for="indoor">
       <input id="indoor"  type="radio" name="indoor-outdoor">  
     </label>

			<label for="outdoor">
       <input id="outdoor" type="radio" name="indoor-outdoor">
     </label>
			<button type="submit">Submit</button>
		</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

What is meant is text like this one:
image

That is what gets actually shown on screen next to the circles:

image

Ah! So it didn’t like the capitalization in the body text… got it. Thanks!