Un-commenting two out of three difficulties

Tell us what’s happening:
un-commenting two out of three with multiple approaches has proven difficult, what am I doing wrong?

Your code so far
`

`

CatPhotoApp

–>


<!--<h1>Hello World</h1> <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>-->
<h1></h1>

<h2>CatPhotoApp</h2>

<!--<p></p>-->
-->

Your browser information:

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

Challenge: Comment out HTML

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

you should not change the existing code
you should only add and/or remove comment tags without making edits to the rest of the code

this is the starting code:

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

<h2>CatPhotoApp</h2>

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

you need to add and/or remove comment tags without changing the html elements in the editor. You need to make the h2 element visible.
A comment starts with <!-- and end with --> and these two things are the only ones you need to add and/or remove from the code