---
id: 619be946958c6009844f1dee
title: Step 44
challengeType: 0
dashedName: step-44
---
# --description--
Start the penguin's face, by adding two `div` elements within `.penguin-head`, and giving them both a `class` of `face`.
# --hints--
You should add `--fcc-expected--` `div` elements to `.penguin-head`, but found `--fcc-actual--`.
```js
assert.equal(document.querySelectorAll('.penguin-head > div')?.length, 2);
```
You should give the first `div` a `class` of `face`, but found `--fcc-actual--`.
```js
assert.include(document.querySelector('.penguin-head > div:nth-of-type(1)')?.className, 'face');
```
You should give the second `div` a `class` of `face`, but found `--fcc-actual--`.
```js
assert.include(document.querySelector('.penguin-head > div:nth-of-type(2)')?.className, 'face');
```
# --seed--
## --seed-contents--
```html