let alphabet_letters: string[] = [];
for (let i: number = 97; i <= 122; i++) {
alphabet_letters.push(String.fromCharCode(i));
}
console.log(alphabet_letters);
/*
run:
["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
*/