Ask the user how many times you want to run the algorithm. 2. Then choose a word at random from the array of Strings as the target (Use the integer random number generator). 3 Then set up a for loop to run the algorithm the correct number of times by using the sequential algorithm. 4. Before the for loop, place the following code to get time in nanoseconds: long start = System.nanoTime(); 5. After the for loop, place the following code to get the elapsed time: long diff = System.nanoTime()-start; double time = diff/1000000000.0; 6. Print your result 10 times