int[] scores = new int[6]; System.out.println(scores); > 배열이 저장된 주소값이 출력되고 배열은 출력되지 않는다. System.out.println(Arrays.toString(scores)); > 배열이 출력된다.