---
id: 5f46e7a4750dd05b5a673920
title: Step 88
challengeType: 0
dashedName: step-88
---
# --description--
Now apply the `address` class to the `p` element containing the address.
# --hints--
You should apply the `class="address"` attribute.
```js
assert(code.match(/class=('|")address\1/i));
```
Your `.address` element should be your `p` element.
```js
assert($('.address')[0].tagName === 'P');
```
Your `.address` element should have the text `123 freeCodeCamp Drive`.
```js
assert($('.address')[0].innerText.match(/123 Free Code Camp Drive/i));
```
# --seed--
## --seed-contents--
```html