Four arrays are needed: two int[] and two double[]; all arrays have the same length. The two int[] arrays are already defined in the sample code). int[] a; // Original values. int[] aa; // Squares of the original values. Create two more arrays of type "double", named in lowercase letters from the first three letters of your first name and the first three letters of your last name. double[] tho // Deviation (=value minus mean) double[] jeff // Deviation-squared. NOTE: These examples are for a person named "Thomas Jefferson" Use your own name in your code. The first array a[] is already defined in the sample code; you must add the others. Sample code already includes functions showI() to display an int[] array and sumI() to add up the elements of an integer array. I N S T R U C T I O N S Follow the instructions within the sample code, such as: // [2a.] Add one to every odd value in the array a[]. Add your own code where indicated: // ++++ ADD YOUR CODE HERE and add new functions where needed. static double sumI( int a[], int m ) { // ++++ ADD YOUR CODE HERE Be sure to change the author String to use your own name: // ++++ CHANGE author TO YOUR NAME static String author= "Thomas Jefferson"; and change the array names to use the first three letters of your own name: // ++++ CHANGE array names (tho & jeff) to YOUR NAME! double[] tho= new double[many]; // double[] jeff= new double[many]; //