Uncomment HTML can you help me

Tell us what’s happening:
i am brand new to coding can you tell me what i am doing wrong i can not uncomment this

Your code so far


<!-- CatPhotoApp -->
<!-- Hello World -->
<!-- Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot,hairball run catnip eat the grass sniff -->

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/uncomment-html/

Comments are basically not part of the code but it helps to make the code more readable. they are added to make code easy to understand.

you can comment out code using <!-- anything in between is a comment-->,
hence removing <!--text --> would uncomment the text.

example:

<!-- this section this ... -->
your actual html code;

Try solving now.