Need help with my coding

IM NOT SUEW HOW TO CHANNGE THE ORDER HELPTell us what’s happening:

Your code so far


<!--

<h1>Hello World</-->

<H2>catphotoapp</-->

<!--

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15.

Challenge: Comment out HTML

Link to the challenge:

First tip, don’t change anything that doesn’t need to be changed. For example, don’t convert the tags to uppercase. A lot of these tests are very sensitive to even the smallest change and will cause you to fail. So click the “Reset All Code” button to put this back to the original code.

Now all you need to do is comment out the <h1> and <p>. A comments starts with <!-- and ends with -->. Right now the entire thing is commented out, as you can see the <!-- at the very top and the corresponding --> at the very bottom. That means that everything in between those beginning/closing tags is part of one big comment.

You need to add two things so that only the <h1> and <p> are commented out: Another --> closing comment tag to end the comment around the <h1> and another <!-- opening comment tag to begin the comment around the <p>. That’s it, add those two tags. Do not change anything else.