--- id: 6193e5946b7ea12d8ce7b1c2 title: Step 16 challengeType: 0 dashedName: step-16 --- # --description-- Copy one of your `.row total` elements, with its contents, and paste that into your third `.section` element. Do not copy the other elements. # --hints-- Your third `.section` element should have a `.row total` element. ```js assert(document.querySelectorAll('.section')?.[2]?.querySelector('.row.total')); ``` Your new `.row total` element should match the other `.row total` elements. ```js assert.deepEqual(document.querySelectorAll('.row.total')?.[0]?.innerHTML, document.querySelectorAll('.row.total')?.[2]?.innerHTML); ``` Your third `.section` element should not have any other elements within it. ```js assert(document.querySelectorAll('.section')?.[2]?.querySelector('.row.total')?.previousElementSibling === null); assert(document.querySelectorAll('.section')?.[2]?.querySelector('.row.total')?.nextElementSibling === null); ``` # --seed-- ## --seed-contents-- ```html AcmeWidgetCorp Balance Sheet

Assets

Liabilities

Net Worth

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