I have a ten spot array in my code, which is user inputted.
for (int i = 0; i < arraya.length; i++){
arraya[i] = scan.nextInt();
}
After entering
2, 4, 53, 2, 3, 46, 45, 5, 4, 3
the array that was printed read
[I@86b012
How do I fix this?