char [][] ALPHA_LIST = {
{'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'}
};
I'm using this like a parallel array to produce a simple encryption for a school project. I found out that every character is in the first row of the array, making it simple array instead of a 2D. Can anyone tell me how my definition is failing to communicate the separation of the two halves of the alphabet?