RegEx Multiple characters

Tell us what’s happening:
The last criteria, Ohhhhhhh should not be matched, is not fulfilled. I have clearly specified /h{3,6}/. What is wrong with that?

Your code so far


let ohStr = "Ohhh no";
let ohRegex = /h{3,6}/; // Change this line
let result = ohRegex.test(ohStr);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/specify-upper-and-lower-number-of-matches

You need to include the matching strings besides h.