Take all the elements currently located within the main element and nest them in a section element.
let’s break the instructions down into parts and decipher each part:
1- take all the elements currently located within the main element…
Okay so what does this line mean? It means, we are about to do something with all the HTML elements we currently see nested inside of the <main> and </main> tag.
Easy enough?
2- nest them in a section element.
And what does this one mean?
“Nest” - it means to put inside something section element - it means something that looks like this <section> and </section>
So put all the code that was mentioned in part 1 of the instruction inside a section element.
Let me know if you are still stuck after reading this.