we saw that a merge sort performs roughly the same depending on the type of array we have. for this last exercise, we want to see how the merge sort performs against other sorts. we are using the same two classes that we used a couple of lessons ago. this time the sorter class has three public methods: mergesort, insertionsort, and selectionsort. you are also given the sorttester class which has three static methods for creating 3 different types of arrays, random, nearly sorted, and reverse sorted. this test is going to be similar to the previous one, but instead of testing three different types of arrays, you are going to test 3 different types of sorts on the same array type. create an array using the makerandomarray method, then take a start time using system.currenttimemillis(). next, run the array through one of the sort methods in the sorter class. finally, record the end time. subtract the start time from the end time and print out the results.