--- id: 5f344fc1520b6719f2e35605 title: Step 9 challengeType: 0 dashedName: step-9 --- # --description-- There will be two sections on the menu, one for coffees and one for desserts. Add a `section` element within the `main` element so you have a place to put all the coffees available. # --hints-- You should have an opening `
` tag. ```js assert(code.match(//i)); ``` You should have a closing `
` tag. ```js assert(code.match(/<\/section\s*>/i)); ``` You should not change your existing `main` element. Make sure you didn't delete the closing tag. ```js assert($('main').length === 1); ``` Your `section` element should be within your `main` element. ```js const main = document.querySelectorAll('main')?.[0]; assert(main.children[0].tagName === 'SECTION'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

CAMPER CAFE

Est. 2020

--fcc-editable-region--
--fcc-editable-region-- ```