--- id: 5f3ef6e0e0c3feaebcf647ad title: Passo 47 challengeType: 0 dashedName: step-47 --- # --description-- Adicione um elemento `h2` na nova seção e dê a ele o texto `Desserts`. # --hints-- Você deve manter o elemento `section` preexistente. ```js assert($('section').length === 2); ``` Você deve adicionar um elemento `h2` dentro do segundo elemento `section`. ```js assert($('section')[1].children[0].tagName === 'H2'); ``` O novo elemento `h2` deve conter o texto `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% } ```