so basically this is my code:
Random randomgenerator = new Random(); int[] arr = new int[8];
    for (int i = 0; i < arr.length; i++) {
        arr[i] = randomgenerator.nextInt(100);
    }
    System.out.println(arr);
}
}
and this is what appears in the console :
[I@106d69c
I really need help with this, I am probably doing some terrible mistake because I am new to Java coding.
 
    