class Main {
public static void main(String[] args) {
int list1[] = {1,2,3,4,5};
int list2[] = {-6,7,8,9,0,3};
//IT IS HERE I CANNOT FIGURE OUT HOW TO CALCULATE THE AVERAGES OF THE ABOVE ARRAYS
// calculate and print array average
System.out.println("List 1: " + averageArray(list1));
System.out.println("List 2: " + averageArray(list2));
System.out.println("List 2: " + averageArray(new int[]{-1,4}));
System.out.println("Min: " + minValue(list2));
System.out.println("Max: " + maxValue(list2));
int result[] = arrayMerge(list1, list2);
Could you please show me how to calculate the mean average of the above arrays