---
id: 6145f8f8bcd4370f6509078e
title: Step 42
challengeType: 0
dashedName: step-42
---
# --description--
Within the `address` element, add the following:
```html
freeCodeCamp
San Francisco
California
USA
```
You can visit, but you might not find anything...
# --hints--
You should add the above text including the ` ` tags to the `address` element.
```js
assert.equal(document.querySelector('address')?.innerText, 'freeCodeCamp\nSan Francisco\nCalifornia\nUSA');
```
# --seed--
## --seed-contents--
```html