---
id: 5d822fd413a79914d39e9906
title: Step 62
challengeType: 0
dashedName: step-62
---
# --description--
The next building will have three sections. Nest three `div` elements within `.bb4`. Give them the classes of `bb4a`, `bb4b` and `bb4c` in that order.
# --hints--
You should add three `div` elements within `.bb4`.
```js
assert.equal(document.querySelector("div.bb4")?.children?.length, 3);
```
You should give the first new `div` a class of `bb4a`.
```js
assert.exists(document.querySelector("div.bb4 > div.bb4a"));
```
You should give the second new `div` a class of `bb4b`.
```js
assert.exists(document.querySelector("div.bb4 > div.bb4a"));
```
You should give the third new `div` a class of `bb4c`.
```js
assert.exists(document.querySelector("div.bb4 > div.bb4a"));
```
You should place the new `div` elements in this order `.bb4a + .bb4b + .bb4c`.
```js
assert.exists(document.querySelector("div.bb4a + div.bb4b"));
assert.exists(document.querySelector("div.bb4b + div.bb4c"));
```
# --seed--
## --seed-contents--
```html