What does it mean by " The main element should have two paragraph elements as children"

Need help, can anybody answer this question that I have posted?

  • Professor Mitch

Paragraph elements are this (tag <p>):

<p>This is text inside of paragraph element</p>

To have element as children means that element is nested\placed inside of another element:

<parent>
    <child>I am text of an element that is children of another element!</child>
</parent>

Obliviously tags are just example and not real tags.

1 Like

Thank you arigoru for helping me.