Add Comments in JSX

this is my issue:

** The existing h1 and p elements should not be modified.**


const JSX = (
<div>
  {/*<h1>This is a block of JSX</h1>
  <p>Here's a subtitle</p>
  */}
  <h1>i guess this is what you  wanted?</h1>
<p>so what do you think?</p>
</div>
);

Your browser information:

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

Challenge: Add Comments in JSX

Link to the challenge:

What you’ve done here is comment out the existing h1 and p elements. You’re supposed to leave these alone, then add a comment of your own somewhere in the div.

const JSX = (
  <div>
    {/* This is a comment */}
    <h1>This is a block of JSX</h1>
    <p>Here's a subtitle</p>
    
  </div>
);

In the future, it’s easier to help if you give us a description of the problem you’re having so folks don’t have to visit the challenge to find out the question. Good luck!