--- id: 61fd6343fb42013d99bcd7f3 title: Step 2 challengeType: 0 dashedName: step-2 --- # --description-- Within your `body` element, nest a `section` element within a `main` element. # --hints-- The first element inside the `body` element should be your `main` element. ```js assert(document.querySelector('body')?.children?.[0]?.localName === 'main'); ``` You should have a `section` element within your `main` element. ```js assert(document.querySelector('main')?.children?.[0]?.localName === 'section'); ``` # --seed-- ## --seed-contents-- ```html