You are to write a program name arrayScaling.java that will randomly generate 5000 integer number raging from 1 - 49 and place them in an array.
1. The program will scale this array by 3 using simple multiplication and time the amount of time it takes to do this.
2. The program will now scale the same array by 3 but by using Multi Treading and time this process as well
3. Finally, the program would compare the time it took for these two procedures and and print out a message indicating which is the better method.