So I defined an array of the type Character as follows:
Character[] x = {'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'};
When I ran the debugger I noticed that the IDs of all the characters jumped all over the place. For example, the id for 'a' is 31. b's is 32, c:33, d:34, and then e:319, f:320 etc. Until it gets to 'r' where the id is back down to 24.
Whats going on? Are the lower numbers ids for chars while the larger numbers are ids for Characters? Why is it inconsistent within one array? How do I make it so that they're all consistent?