Am failing to get approval on challenge 5 comment out

Tell us what’s happening:
Please help me here, am not getting approval even after doing it correctly.
I have commented out h1 and p then uncommented h2 but am not getting the approval

Your code so far

<!--HelloWorld-->
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>
CatPhotoApp
<p>Hello Paragraph</p>
<!--Hello Paragraph-->

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Linux; Android 6.0; Hisense U989 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/comment-out-html

Is that your code? If so, then you have misunderstood just a little.

You comment out parts of the code by adding these symbols around the code:

<p>Some text</p>
<!-- <p>Cats are dogs</p> -->
<p>Beer is good for you</p>

output of this code in the browser is such:

Some text
Beer is good for you

<!--  <p>Some text</p> -->
<p>Cats are dogs</p> 
<p>Beer is good for you</p>

and now:

Cats are dogs
Beer is good for you

looks to me like your comments lines are in the wrong spots

catphotoapp

-->

try that see if that helps

Thank you for help I got right