1) Create a new project named "Array Problems"
2) Inside the project, create an instance class that will do the following
a. Instantiate an array named 'aProblems'
b. Populate the aProblems with these values 4,5,6,89,23,45,78,99,101,233
3) Create a new method name ascSort() that will accept the aProblems array as an argument - Perform an Ascending sort and print out the values
4) Create a new method named searchArray() that will accept the aProblems array as an argument. - pass the aProblem into the method and perform a for loop to search for the value 78 and print out the value
5) Create a new method named listArray() that will accept the aProblems array as an argument
a. Create an String ArrayList name aList()
b. Take each value within the aProblems array and populate aList()