--- id: 6193ece0b46e03423cd66e78 title: Step 23 challengeType: 0 dashedName: step-23 --- # --description-- For your seventh `.row` element, give the `span` elements the following text, in order: `Credit`, `$50`, `$50`, and `$75`. Give the `.notes` element below it the text `The running balance on our line of credit.`. # --hints-- The first `span` element should have the text `Credit`. ```js const row = document.querySelectorAll('.section > .row')?.[6]; assert(row?.querySelectorAll('span')?.[0]?.textContent === 'Credit'); ``` The second `span` element should have the text `$50`. ```js const row = document.querySelectorAll('.section > .row')?.[6]; assert(row?.querySelectorAll('span')?.[1]?.textContent === '$50'); ``` The third `span` element should have the text `$50`. ```js const row = document.querySelectorAll('.section > .row')?.[6]; assert(row?.querySelectorAll('span')?.[2]?.textContent === '$50'); ``` The fourth `span` element should have the text `$75`. ```js const row = document.querySelectorAll('.section > .row')?.[6]; assert(row?.querySelectorAll('span')?.[3]?.textContent === '$75'); ``` Your fifth `.notes` element should have the text `The running balance on our line of credit.`. ```js const notes = document.querySelectorAll('.section > .notes')?.[5]; assert(notes?.textContent === 'The running balance on our line of credit.'); ``` # --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. --fcc-editable-region--

--fcc-editable-region--

Net Worth

``` ```css ```