Need resolution on below

Tell us what’s happening:
You should have an ordered list for Top 3 things cats hate:
You should have an unordered list for Things cats love:



**Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36</code>.

**Challenge:** Create an Ordered List

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-an-ordered-list

You have written the description of the lists (“Things cats love” and “Top 3 things cats hate”) inside the lists, that’s invalid HTML. A <ul> or <ol> can only have <li> items as direct children, not some text.
If you reset the challenge, you’ll see that the descriptions are within a <p> tag above the lists:

  <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>

  <!-- insert your <ol> here  -->