---
id: 619d237a107c10221ed743fa
title: Step 86
challengeType: 0
dashedName: step-86
---
# --description--
Fun fact: Penguins cannot fly without wings.
Within `.penguin-body`, before the `.foot` elements, add two `div` elements each with a `class` of `arm`. Give the first `.arm` a `class` of `left`, and the second `.arm` a `class` of `right`.
# --hints--
You should add two `div` elements within `.penguin-body`. Expected `--fcc-expected--` `div` elements, found `--fcc-actual--`.
```js
assert.equal(document.querySelectorAll('.penguin-body > div')?.length, 4);
```
You should give the first new `div` a `class` of `arm`.
```js
assert.exists(document.querySelector('.penguin-body > div.arm'));
```
You should give the second new `div` a `class` of `arm`.
```js
assert.equal(document.querySelectorAll('.penguin-body > div.arm')?.length, 2);
```
You should give one `div` a `class` of `left`.
```js
assert.exists(document.querySelector('.penguin-body > div.arm.left'));
```
You should give the other `div` a `class` of `right`.
```js
assert.exists(document.querySelector('.penguin-body > div.arm.right'));
```
You should place `.arm.right` after `.arm.left`.
```js
assert.exists(document.querySelector('.arm.left + .arm.right'));
```
# --seed--
## --seed-contents--
```html