--- id: 61fd6343fb42013d99bcd7f3 title: Passo 2 challengeType: 0 dashedName: step-2 --- # --description-- Dentro do elemento `body`, aninhe um elemento `section` e um elemento `main`. # --hints-- O primeiro elemento dentro do elemento `body` deve ser seu elemento `main`. ```js assert(document.querySelector('body')?.children?.[0]?.localName === 'main'); ``` VocĂȘ deve ter um elemento `section` dentro do elemento `main`. ```js assert(document.querySelector('main')?.children?.[0]?.localName === 'section'); ``` # --seed-- ## --seed-contents-- ```html Balance Sheet --fcc-editable-region-- --fcc-editable-region-- ``` ```css ```