---
id: 5f344fbc22624a2976425065
title: Step 10
challengeType: 0
dashedName: step-10
---
# --description--
Create an `h2` element in the `section` element and give it the text `Coffee`.
# --hints--
You should have an opening `
` tag.
```js
assert(code.match(//i));
```
You should have a closing `
` tag.
```js
assert(code.match(/<\/h2\s*>/i));
```
You should not change your existing `section` element. Make sure you did not delete the closing tag.
```js
assert($('section').length === 1);
```
Your `h2` element should be within your `section` element.
```js
const h2 = document.querySelector('h2');
assert(h2.parentElement.tagName === 'SECTION');
```
Your `h2` element should have the text `Coffee`.
```js
const h2 = document.querySelector('h2');
assert(h2.innerText === 'Coffee');
```
# --seed--
## --seed-contents--
```html
Cafe Menu
--fcc-editable-region--
--fcc-editable-region--
```