--- id: 64345c560591891f64976f7a title: Step 13 challengeType: 0 dashedName: step-13 --- # --description-- Now that your helper functions are complete, back in your `onload` event handler you should declare a `letters` variable. Assign it the result of calling `charRange()` with the letters `A` and `J` as arguments. # --hints-- You should declare a `letters` variable. ```js assert.match(code, /(?:let|const|var)\s+letters/); ``` You should use `const` to declare your `letters` variable. ```js assert.match(code, /const\s+letters/); ``` You should assign a `charRange()` call to your `letters` variable. ```js assert.match(code, /const\s+letters\s*=\s*charRange\(/); ``` You should pass `A` as the first argument to your `charRange()` call. ```js assert.match(code, /const\s+letters\s*=\s*charRange\(\s*('|"|`)A\1/); ``` You should pass `J` as the second argument to your `charRange()` call. ```js assert.match(code, /const\s+letters\s*=\s*charRange\(\s*('|"|`)A\1\s*,\s*('|"|`)J\2\s*\)/) ``` # --seed-- ## --seed-contents-- ```html