--- id: 6193ea793e49253eee1452d1 title: Step 22 challengeType: 0 dashedName: step-22 --- # --description-- Give the `span` elements within your sixth `.row` element the following text, in order: `Expenses`, `$200`, `$300`, and `$400`. Then give the following `.notes` element the text `Annual anticipated expenses, such as payroll.`. # --hints-- The first `span` element should have the text `Expenses`. ```js const row = document.querySelectorAll('.section > .row')?.[5]; assert(row?.querySelectorAll('span')?.[0]?.textContent === 'Expenses'); ``` The second `span` element should have the text `$200`. ```js const row = document.querySelectorAll('.section > .row')?.[5]; assert(row?.querySelectorAll('span')?.[1]?.textContent === '$200'); ``` The third `span` element should have the text `$300`. ```js const row = document.querySelectorAll('.section > .row')?.[5]; assert(row?.querySelectorAll('span')?.[2]?.textContent === '$300'); ``` The fourth `span` element should have the text `$400`. ```js const row = document.querySelectorAll('.section > .row')?.[5]; assert(row?.querySelectorAll('span')?.[3]?.textContent === '$400'); ``` Your fifth `.notes` element should have the text `Annual anticipated expenses, such as payroll.`. ```js const notes = document.querySelectorAll('.section > .notes')?.[4]; assert(notes?.textContent === 'Annual anticipated expenses, such as payroll.'); ``` # --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
Loans $500 $250 $0
The outstanding balance on our startup loan. --fcc-editable-region----fcc-editable-region--