For function "recursiveMin", write
the missing part of the recursive call. This function
should return the minimum element in an array of
integers. You should assume that "recursiveMin" is
initially called with "startIndex" = 0.
Each time the recursive call is executed, startindex should be incremented so that the recursive case action passes through all the values in the array.