The main tag should have two paragraph

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>
<main>
    <p>Purr jump eat the grass rip the couch              scratched sunbathe, shed everywhere rip the couch     sleep in the sink fluffy fur catnip scratched.</p>
</main> 

Your browser information:

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

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

I have just started to learn coding. I seem to be stuck on the issue of the main tag should have two paragraphs like children. My text seems to be the same as tutorial. I am working on HTML. Please help

We can’t see what your code looks like. Use the “Ask for help” button on the challenge.

Thank you.i will give that a try.

This is the main element:

<main></main>

This is a paragraph element

<p>Some text</p>

This is a main element with one paragraph as a child, the single paragraph element is wrapped in a main element.

<main>
  <p>Some text</p>
</main>

One paragraph element in a main element. You are being asked for two paragraphs in a main element.

ffffff