Write a program that generates 10 (TEN) random integer numbers that range from 1 to 50,
and store them in an array variable. Display the original order of random integer numbers.
Then create a function that sorts the number elements from the array in ascending order and
display the result.
The sample output screen is as the following:
Random numbers generated: 8 46 17 3 23 8 13 33 20 42
After sorting: 3 8 8 13 17 20 23 33 42 46
(I stop in half way with no direction how to continue on it :( )