--- id: 6193e40e67d94029468e6b2d title: Step 13 challengeType: 0 dashedName: step-13 --- # --description-- Below your `.section` element, create another `h2` element with the text `Liabilities`. Following that, create another `div` with the `class` set to `section`. # --hints-- You should create a new `h2` element below your existing `.section` element. ```js assert(document.querySelector('.section')?.nextElementSibling?.localName === 'h2'); ``` Your new `h2` element should have the text `Liabilities`. ```js assert(document.querySelector('.section')?.nextElementSibling?.textContent === 'Liabilities'); ``` You should create a new `div` element within your `#sheet` element. ```js assert(document.querySelector('#sheet')?.lastElementChild?.localName === 'div'); ``` Your new `div` element should have a `class` attribute set to `section`. ```js assert(document.querySelector('#sheet')?.lastElementChild?.classList?.contains('section')); ``` # --seed-- ## --seed-contents-- ```html AcmeWidgetCorp Balance Sheet

Assets

--fcc-editable-region-- --fcc-editable-region--
``` ```css ```