Please help me solve this HTML5 Elements

Tell us what’s happening:

Your code so far


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

<P> Kitty ipsum text Purr Jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0.

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

close the second paragraph element <p></p>and than put them into

`<main>
<p>text</p>
<p>text</p>
</main>`

Wrap the paragraphs with an opening and closing main tag.

First of all, make sure the p elements are not caps,

Ex: <p></p> It must be like this

And those two paragraph elements must be nested inside a main, it means
there should be another tag called main, it should act like a parent to these two p (child) elements

Ex:

<parent>
    <child>
    <child>
</parent>