Generate lower case ASCII alphabet

FCC link

Write a function to generate an array of lower case ASCII characters for a given range. For example, given the range ['a', 'd'], the function should return ['a', 'b', 'c', 'd'].

Test

{{test}}

Console output