public class Main {
public static void main(String[] args) {
// Create a String array with four values
String[] fruits = {"Apple", "Banana", "Cherry", "Mango"};
// Create an int array the same way
int[] scores = {88, 72, 95, 60};
System.out.println(fruits[0]); // Apple
System.out.println(scores[2]); // 95
}
}