int[] scores = {85, 90, 78, 88, 76};
for (int i = 0; i < scores.length; i++) {
    System.out.println("Score " + (i+1) + ": " + scores[i]);
}