--- id: 6193ed97ae313e4331c9078a title: Step 24 challengeType: 0 dashedName: step-24 --- # --description-- Give the `span` elements within your second `.row total` element the following text, in order: `Total`, `$750`, `$600`, and `$475`. # --hints-- The first `span` element should have the text `Total`. ```js const row = document.querySelectorAll('.section > .row')?.[7]; assert(row?.querySelectorAll('span')?.[0]?.textContent === 'Total'); ``` The second `span` element should have the text `$750`. ```js const row = document.querySelectorAll('.section > .row')?.[7]; assert(row?.querySelectorAll('span')?.[1]?.textContent === '$750'); ``` The third `span` element should have the text `$600`. ```js const row = document.querySelectorAll('.section > .row')?.[7]; assert(row?.querySelectorAll('span')?.[2]?.textContent === '$600'); ``` The fourth `span` element should have the text `$475`. ```js const row = document.querySelectorAll('.section > .row')?.[7]; assert(row?.querySelectorAll('span')?.[3]?.textContent === '$475'); ``` # --seed-- ## --seed-contents-- ```html AcmeWidgetCorp Balance Sheet

Assets

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

Liabilities

Loans $500 $250 $0

The outstanding balance on our startup loan.

Expenses $200 $300 $400

Annual anticipated expenses, such as payroll.

Credit $50 $50 $75

The running balance on our line of credit. --fcc-editable-region--

--fcc-editable-region--

Net Worth

``` ```css ```