--- id: 587d7db5367417b2b2512b97 title: Match Numbers and Letters of the Alphabet challengeType: 1 videoUrl: '' localeTitle: Спичечные номера и буквы алфавита --- ## Description undefined ## Instructions
Создайте одно регулярное выражение, соответствующее диапазону букв между h и s , и диапазон чисел от 2 до 6 . Не забудьте включить соответствующие флаги в регулярное выражение.
## Tests
```yml tests: - text: Ваше regex myRegex должно соответствовать 17 элементам. testString: 'assert(result.length == 17, "Your regex myRegex should match 17 items.");' - text: '' testString: 'assert(myRegex.flags.match(/g/).length == 1, "Your regex myRegex should use the global flag.");' - text: '' testString: 'assert(myRegex.flags.match(/i/).length == 1, "Your regex myRegex should use the case insensitive flag.");' ```
## Challenge Seed
```js let quoteSample = "Blueberry 3.141592653s are delicious."; let myRegex = /change/; // Change this line let result = myRegex; // Change this line ```
## Solution
```js // solution required ```