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

Total $750 $600 $475

Net Worth

--fcc-editable-region--

--fcc-editable-region--
``` ```css ```