---
id: 619d019488f98c06acbbb71a
title: Step 48
challengeType: 0
dashedName: step-48
---
# --description--
Currently, the two `.face` elements are on top of each other.
Fix this, by adding a `class` of `left` to the first `.face` element, and a `class` of `right` to the second `.face` element.
# --hints--
You should give a `class` of `left` to the first `.face` element.
```js
assert.include(document.querySelector('.face:nth-of-type(1)').className, 'left');
```
You should give a `class` of `right` to the second `.face` element.
```js
assert.include(document.querySelector('.face:nth-of-type(2)').className, 'right');
```
# --seed--
## --seed-contents--
```html