Using ruby, is it possible to make an array of each letter in the alphabet and 0-9 easily?
Try this:
alphabet_array = [*'a'..'z', *'A'..'Z', *'0'..'9']
Or as string:
alphabet_string = alphabet_array.join