--- id: 6193e9f7a92e7e3e1810b2f4 title: Step 21 challengeType: 0 dashedName: step-21 --- # --description-- Now move on to your second `.section` element. In the first `.row` there, give the `span` elements the following text in order: `Loans`, `$500`, `$250`, `$0`. Give the `.notes` element below it the text `The outstanding balance on our startup loan.`. # --hints-- The first `span` element should have the text `Loans`. ```js const row = document.querySelectorAll('.section > .row')?.[4]; assert(row?.querySelectorAll('span')?.[0]?.textContent === 'Loans'); ``` The second `span` element should have the text `$500`. ```js const row = document.querySelectorAll('.section > .row')?.[4]; assert(row?.querySelectorAll('span')?.[1]?.textContent === '$500'); ``` The third `span` element should have the text `$250`. ```js const row = document.querySelectorAll('.section > .row')?.[4]; assert(row?.querySelectorAll('span')?.[2]?.textContent === '$250'); ``` The fourth `span` element should have the text `$0`. ```js const row = document.querySelectorAll('.section > .row')?.[4]; assert(row?.querySelectorAll('span')?.[3]?.textContent === '$0'); ``` Your fourth `.notes` element should have the text `The outstanding balance on our startup loan.`. ```js const notes = document.querySelectorAll('.section > .notes')?.[3]; assert(notes?.textContent === 'The outstanding balance on our startup loan.'); ``` # --seed-- ## --seed-contents-- ```html
2019 2020 2021
Cash $25 $30 $28
This is the cash we currently have on hand.Checking $54 $56 $53
Our primary transactional account.Savings $500 $650 $728
Funds set aside for emergencies.Total $579 $736 $809
--fcc-editable-region--