Using Java codes on DrJava create a one-dimensional array with the following numbers in this order: 99, 57, 54, 28, 11, 37, 82, 43, and 69. Write a method called by main() that will sort and put these numbers in order within the array. Note - you must pass the array to the method.
You must also do the work of sorting in the method. You cannot just call another library method. Use loops to show the data in the original array as well as the repopulated array in ascending order.