How to wrap paragraphs in an opening and closing tag

How to wrap paragraphs in an opening and closing tag:

Introduction to HTML5 Elements


<h2>CatPhotoApp</h2>
    <header><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></header><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>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 6.0; Infinix HOT 4 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Mobile Safari/537.36.

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

get rid of the header tags

You need both paragraphs (<p> elements) to be nested inside a <main> element.

Example, using fake HTML elements, replace using the correct element names:

<mainElement>
  <paragraphElement></paragraphElement>
  <paragraphElement></paragraphElement>
</mainElement>

Look at the example given in the MDN docs for the <main> element. It has two <p> elements wrapped by a <main> element (ignore the role="main" part of the example).