--- 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 Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } .item p { display: inline-block; } .flavor { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```