Create a Visual Logic flow chart with four methods. Main methodwill create an array of 5 elements, then it will call a readmethod, a sort method and a print method passing the array to each.The read method will prompt the user to enter 5 numbers that willbe stored in the array. The sort method will sort the array inascending order (smallest to largest). The print method will printout the array.
A sample run might look like this:
Please enter a number: 2
Please enter a number: 7
Please enter a number: 1
Please enter a number: 10
Please enter a number: 3
Your numbers are: 1, 2,
OR
OR