---
id: 5d822fd413a79914d39e98f8
title: Step 48
challengeType: 0
dashedName: step-48
---
# --description--
Nest two new `div` elements within `.bb2`, give them the classes of `bb2a` and `bb2b`, in that order. These will be two sections for this building.
# --hints--
You should add two `div` elements to `.bb2`.
```js
assert.equal(document.querySelector('div.bb2')?.children?.length, 2);
```
You should give the first `div` a class of `bb2a`.
```js
assert.exists(document.querySelector('div.bb2a'));
```
You should give the second `div` a class of `bb2b`.
```js
assert.exists(document.querySelector('div.bb2b'));
```
# --seed--
## --seed-contents--
```html