ASCII conversion is one way to do it.
The letters A-Z are represented in ASCII by the numeric range 65-90.
Create code to populate an array with A-Z by incrementing through 65-90, while using chr() to return the characters represented by those numbers.
OR, just type ABCDEFGHIJKLMNOPQRSTUVWXYZ =)