1class teste {
2 public static void main(String[] args) {
3 // U will most likekly get a null pointer
4 //if u dont inicialize the arr like that
5 int[] arr = new int[ARRAY_SIZE]; // Correct
6 int[] arr; //incorrect and might have nullpointer
7 }
8
9}