--- title: Generate lower case ASCII alphabet id: 5a23c84252665b21eecc7e7a challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof lascii=="function","lascii should be a function.");' - text: '' testString: 'assert(Array.isArray(lascii("a","d")),"lascii("a","d") should return an array.");' - text: '' testString: 'assert.deepEqual(lascii("a","d"),results[0],"lascii("a","d") should return [ "a", "b", "c", "d" ].");' - text: '' testString: 'assert.deepEqual(lascii("c","i"),results[1],"lascii("c","i") should return [ "c", "d", "e", "f", "g", "h", "i" ].");' - text: '' testString: 'assert.deepEqual(lascii("m","q"),results[2],"lascii("m","q") should return [ "m", "n", "o", "p", "q" ].");' - text: '' testString: 'assert.deepEqual(lascii("k","n"),results[3],"lascii("k","n") should return [ "k", "l", "m", "n" ].");' - text: '' testString: 'assert.deepEqual(lascii("t","z"),results[4],"lascii("t","z") should return [ "t", "u", "v", "w", "x", "y", "z" ].");' ```
## Challenge Seed
```js function lascii (cFrom, cTo) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```