int[] numbers = new int[10];
numbers[0] = 20;
At first I thought I was so far off in syntax (I'm more of a C++ programmer), that It wouldn't work. But I whipped out the good ole' Java book and this would be correct.
Is there any obvious reason why Android Studio isn't recognizing this? The first line declaring the array appears to work properly, but the line where I set 20 as the first block is giving me the red squigglies and Unknown Class 'numbers' error.