Using ruby, is it possible to make an array of each letter in the alphabet and 0-9 easily?
You can just do this:
("0".."Z").map { |i| i }