French Vanilla
3.00
--- id: 5f3ef6e0e0c3feaebcf647ad title: Step 48 challengeType: 0 dashedName: step-48 --- # --description-- Add an `h2` element in the new section and give it the text `Desserts`. # --hints-- You should not change your existing `section` element. ```js assert($('section').length === 2); ``` You should add an `h2` element in your second `section` element. ```js assert($('section')[1].children[0].tagName === 'H2'); ``` Your new `h2` element should have the text `Desserts`. ```js assert($('h2')[1].innerText.match(/Desserts/i)); ``` # --seed-- ## --seed-contents-- ```html