Modify the below method so that when given two Java arrays of ints, it recursively merges these two arrays into one large array.
The large array should have items from the first array in even indices (0, 2, 4, ...) and items from the second array in odd indices.
DO NOT ADD ANOTHER METHOD. The random ints will be passed in from a main method created by the teacher. All of the requirements and work should be done in the Problem6 method.
public void Problem6(int[] arrayOne, int[] arrayTwo, int[] mergedArray) {
// Your code here
}