Array Alfabet JS

let alphabet = [...Array(26).keys()].map(i => String.fromCharCode(i + 97));
Innocent Impala