Intro to java Part II: Coding Question 1 (20 points) number of apartment rents, and output below. Here are the requirements: and program on the next page so it will allow the user to enter any then output the lowest rent and the average rent, as shown in the sample the lowest You must use the code on this page without changing any of it ' You should add to the main method as needed to output the lowest rents You'll need to write the method called createAndinpu method You must write a method to which is called from the main code I'm giving you. Notice how this method is called: it's and return value. work that way - you can't change the way the method is called. Sample Output: s java FinalCoding This program will calculate rental price statistics on apartments. How many apartments' prices do you want to enter?3 Please enter the rents of those apartments, one per line: 1500 2500 2000 The lowest monthly rent is: $1500.0 The average monthly rent is: $2000.0 $ java FinalCoding This program will calculate rental price statistics on apartments. How many apartments' prices do you want to enter? 5 Please enter the rents of those apartments, one per line: 1995.5 2000 2400 1900.25 2250 The lowest monthly rent is: $1900.25 The average monthly rent is: $2109.15 Program Source Code: import java.uti1.Scanner class FinalCoding static Scanner keyboard new Scanner (System.in) public static void main (Stringt] args) doubletl prices: int numApt; system.out.println ("This program will calculate rental price " +"statistics on apartments. System.out.print("How many apartments' prices do you want to enter? ")i numApt keyboard.nextInt O keyboard.nextLine ) : System.out.printin("Please enter the rents of those apartments, + "one per line:"): prices - createAndInputPriceArray (numApt) // Add your code to insert here. Write it below or on another sheet of paper