<!-- y para finalizar un comentario, debe usar --> Aquí deberá finalizar el comentario antes de que comience su elemento h2 . h1 y su elemento p , pero no su elemento h2 . h1 para que no se vea en tu página.
    testString: 'assert(($("h1").length === 0), "Comment out your h1 element so that it is not visible on your page.");'
  - text: Deje su elemento h2 comentarios para que sea visible en su página.
    testString: 'assert(($("h2").length > 0), "Leave your h2 element uncommented so that it is visible on your page.");'
  - text: Comenta tu elemento p para que no se vea en tu página.
    testString: 'assert(($("p").length === 0), "Comment out your p element so that it is not visible on your page.");'
  - text: Asegúrese de cerrar cada uno de sus comentarios con --> .
    testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with -->.");'
  - text: No cambie el orden de h1 h2 o p en el código.
    testString: 'assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="") , "Do not change the order of the h1 h2 or p in the code.");'
```