---
id: 615f6fddaac1e083502d3e6a
title: Step 44
challengeType: 0
dashedName: step-44
---
# --description--
This new `p` element will need to be indented. Give it a `class` set to `indent`.
# --hints--
Your `p` element with the text `Saturated Fat 1g 5%` should have a `class` attribute set to `indent`.
```js
assert(document.querySelector('.daily-value.sm-text')?.lastElementChild?.classList?.contains('indent'));
```
# --seed--
## --seed-contents--
```html