I am trying to generate an array of 2 character length of alphanumeric (0-9, A-Z) characters without having to hardcode all of the values. Ex output: 00, 01,..., 09, 90, 91,..., 99, A0, A1,..., A9,AA,..., ZZ
I found a link to generate an array of letters with less work, but I am still unsure of how to do this for a 2D array. I'm new to working with multidimensional arrays. Thanks!