develop the Java code for the user to enter 10 non-sequential integers of their choice. Upon running the program, the user should receive a prompt that says: "Enter number 1 of 10. Press "Enter" on your keyboard when finished:" Your program should then prompt for number 2 of 10, etc., and store the entered integers in an array.

The user's screen should look something like this when running the program:

* Enter number 1 of 10. Press "Enter" on your keyboard when finished: 4
* Enter number 2 of 10. Press "Enter" on your keyboard when finished: -24
* Enter number 3 of 10. Press "Enter" on your keyboard when finished: 197

After entering the 10 integers, your code should output the integers to the screen in the same order that they were entered:

4, -24, 197, ... (for all ten integers)