--- id: 6193e8eba043903cf68598cd title: Step 20 challengeType: 0 dashedName: step-20 --- # --description-- In your first `.row total` element, give the `span` elements within the following text, in order: `Total`, `$579`, `$736`, and `$809`. # --hints-- The first `span` element should have the text `Total`. ```js const row = document.querySelectorAll('.section > .row')?.[3]; assert(row?.querySelectorAll('span')?.[0]?.textContent === 'Total'); ``` The second `span` element should have the text `$579`. ```js const row = document.querySelectorAll('.section > .row')?.[3]; assert(row?.querySelectorAll('span')?.[1]?.textContent === '$579'); ``` The third `span` element should have the text `$736`. ```js const row = document.querySelectorAll('.section > .row')?.[3]; assert(row?.querySelectorAll('span')?.[2]?.textContent === '$736'); ``` The fourth `span` element should have the text `$809`. ```js const row = document.querySelectorAll('.section > .row')?.[3]; assert(row?.querySelectorAll('span')?.[3]?.textContent === '$809'); ``` # --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. --fcc-editable-region----fcc-editable-region--