---
id: 60b69a66b6ddb80858c5159a
title: Step 36
challengeType: 0
dashedName: step-36
---
# --description--
The mask needs eyes. Within your `gray-mask` element, add two `div` elements. The first should have the `class` set to `eyes left`, and the second should have the `class` set to `eyes right`.
# --hints--
You should have two `div` elements within your `#gray-mask` element.
```js
assert(document.querySelectorAll('#gray-mask > div')?.length === 2);
```
Your first new `div` element should have the `class` set to `eyes left`.
```js
const first = document.querySelectorAll('#gray-mask > div')?.[0];
assert(first?.classList?.contains('eyes'));
assert(first?.classList?.contains('left'));
```
Your second new `div` element should have the `class` set to `eyes right`.
```js
const second = document.querySelectorAll('#gray-mask > div')?.[1];
assert(second?.classList?.contains('eyes'));
assert(second?.classList?.contains('right'));
```
# --seed--
## --seed-contents--
```html