A cute orange cat lying on its back

Tell us what’s happening:
just what is wrong with my

things cat hate:



  1. dogs

  2. thunder

  3. cold weather


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> things cats hate:</p>
<ol>
  <li>dogs</li>
  <li>thunder</li>
  <li>cold weather</li>
</ol>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36.

Challenge: Create an Ordered List

Link to the challenge:

I believe the problem is that you have change the text within the p tags to read

<p> things cats hate:</p>

when it should be left as the original

<p>Top things cats hate:</p>

The checks done by the tester will fail because of typos like this.