--- id: 615f7d489a581590d1350288 title: Step 51 challengeType: 0 dashedName: step-51 --- # --description-- Create another `.divider` after your last `p` element. # --hints-- You should create a new `div` element at the end of your `.daily-value.sm-text` element. ```js assert(document.querySelector('.daily-value.sm-text')?.lastElementChild?.localName === 'div'); ``` Your new `div` element should have the `class` attribute set to `divider`. ```js assert(document.querySelector('.daily-value.sm-text')?.lastElementChild?.classList?.contains('divider')); ``` # --seed-- ## --seed-contents-- ```html
8 servings per container
Serving size 2/3 cup (55g)
Amount per serving
% Daily Value *
Total Fat 8g10%
Saturated Fat 1g 5%
Trans Fat 0g
--fcc-editable-region--