need help with this program in java
Directions
Implement selection, bubble, and insertion sort.
For each algorithm, count the number of times it loops (you can make the sort methods return an integer with this count).
Call each sorting algorithms on the following types of arrays:
1. an array of 10 integers already sorted into ascending order
2. an array of 10 integers in the opposite order
3. an array of 10 random integers between 0 and 99
4. an array of 100 integers already sorted into ascending order
5. an array of 100 integers in the opposite order
6. an array of 100 random integers between 0 and 99