curriculum/challenges/english/blocks/basic-html-and-html5/bad87fee1348bd9aedf08804.md
Remember that in order to start a comment, you need to use <!-- and to end a comment, you need to use -->
Here you'll need to end the comment before your h2 element begins.
Comment out your h1 element and your p element, but not your h2 element.
Your h1 element should be commented out so that it is not visible on the page.
assert.isEmpty(document.querySelectorAll('h1'));
Your h2 element should not be commented out so that it is visible on the page.
assert.isNotEmpty(document.querySelectorAll('h2'));
Your p element should be commented out so that it is not visible on the page.
assert.isEmpty(document.querySelectorAll('p'));
Each of your comments should be closed with -->.
assert.isAbove(code.match(/[^fc]-->/g).length, 1);
You should not change the order of the h1, h2, or p elements in the code.
assert.strictEqual(code.match(/<([a-z0-9]){1,2}>/g)[0],'<h1>');
assert.strictEqual(code.match(/<([a-z0-9]){1,2}>/g)[1],'<h2>');
assert.strictEqual(code.match(/<([a-z0-9]){1,2}>/g)[2],'<p>');
<!--
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
-->
<!--<h1>Hello World</h1>-->
<h2>CatPhotoApp</h2>
<!--<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p> -->