Question-Within the second section element, add two div elements with a class of question-block.
Then, within each div.question-block element, add one p element with text of incrementing numbers, starting at 1, and one fieldset element with a class of question.
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
For future reference, it’s much easier to help you if you include a link to the particular step which you are stuck on. I have found and added the link to your post on this occasion.
The best way to ask for help is to click the Help button, which appears after you have submitted incorrect code three times. This will create a forum help post which automatically includes your full code, a direct link to the challenge, and an opportunity for you to describe your issue in detail.
The only issue with your code for this step is that you have nested the fieldset elements inside the p elements. Both elements should be nested inside the div element, but separate from each other (i.e. the fieldset should be below the p, not nested inside it).