---
id: 60b69a66b6ddb80858c51598
title: Step 34
challengeType: 0
dashedName: step-34
---
# --description--
After your `div#offwhite-character` element, add a `div` with the `id` of `black-character`.
# --hints--
You should add a new `div` element within the `.characters` element.
```js
assert(document.querySelectorAll('.characters > div')?.length === 2);
```
Your new `div` element should have the `id` set to `black-character`.
```js
assert(document.querySelectorAll('.characters > div')?.[1]?.getAttribute('id') === 'black-character');
```
# --seed--
## --seed-contents--
```html