Всем привет. Задачка в процессе. Прошу подсказки и наставления именно по массиву. почему при выводе массива на экран вместо моих данных выводится набор символов?(на картинке ниже).
package com.javarush.task.pro.task05.task0505;
import java.util.Scanner;
/*
Reverse
*/
public class Solution {
public static void main(String[] args) {
Scanner read = new Scanner(System.in);
int N = read.nextInt();
int[] Array = new int[N];
if (N > 0) {
for (int i = 0; i < N; i++) {
//int B = read.nextInt();
Array[i] = read.nextInt();
}
}
System.out.println(Array);
//if (N % 2 == 0) {
// for (int i = N; i >= 0; i--) {
// System.out.println(Array[i]);
// }
}
}