--- id: 6193e2baa04690265435e25f title: Step 10 challengeType: 0 dashedName: step-10 --- # --description-- Below the final `.notes` element, create a `p` element with a `class` of `row` and `total`. # --hints-- You should create a new `p` element within your `.section` element. ```js assert(document.querySelectorAll('.section > p')?.length === 4); ``` Your new `p` element should have a `class` attribute set to `row total`. ```js assert(document.querySelectorAll('.section > p')?.[3]?.classList?.contains('row')); assert(document.querySelectorAll('.section > p')?.[3]?.classList?.contains('total')); ``` Your new `p` element should be the last element in the `.section` element. ```js assert(document.querySelectorAll('.section > p')?.[3]?.nextElementSibling === null); ``` # --seed-- ## --seed-contents-- ```html
2019 2020 2021