---
id: 60b69a66b6ddb80858c5158e
title: Step 24
challengeType: 0
dashedName: step-24
---
# --description--
To ensure you can see the mask, give it a `z-index` of `1`.
# --hints--
Your `#black-mask` selector should have a `z-index` property set to `1`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-mask')?.zIndex === '1');
```
# --seed--
## --seed-contents--
```html