Here is a working merge sort code. The method mergeSort is defined recursively until the elements in the array is 1 in which case it returns the array back.
My questi