---
id: 619d10cc98145f14820399c5
title: Step 67
challengeType: 0
dashedName: step-67
---
# --description--
Below the `.blush.right` element, add two `div` elements each with a `class` of `beak`. Also, give the first `.beak` element a `class` of `top`, and the second `.beak` element a `class` of `bottom`.
# --hints--
You should add two `div` elements within `.penguin-head`. Expected `--fcc-expected--` `div` elements, found `--fcc-actual--`.
```js
assert.equal(document.querySelectorAll('.penguin-head > div')?.length, 9);
```
You should give the first new `div` a `class` of `beak`.
```js
assert.exists(document.querySelector('.penguin-head > div.beak'));
```
You should give the second new `div` a `class` of `beak`.
```js
assert.equal(document.querySelectorAll('.penguin-head > div.beak')?.length, 2);
```
You should give the first new `div` a `class` of `top`.
```js
assert.exists(document.querySelector('.penguin-head > div.beak.top'));
```
You should give the second new `div` a `class` of `bottom`.
```js
assert.exists(document.querySelector('.penguin-head > div.beak.bottom'));
```
You should place `div.beak.top` after `div.blush.right`.
```js
assert.exists(document.querySelector('.blush.right + .beak.top'));
```
You should place `div.beak.bottom` after `div.beak.top`.
```js
assert.exists(document.querySelector('.beak.top + .beak.bottom'));
```
# --seed--
## --seed-contents--
```html