10.32 Array Count Greater Than (Individual Assignment) This is an Individual Assignment. You must complete this assignment on your own. - Do not collaborate or share code with other students. - Do not copy and paste code from anywhere. - Do not use any resources outside of those provided in the course materials. - Do not use any language features that have not been covered to this point in the course materials, - If you get stuck or need help, please use the help systems provided in this course. Required Skills Inventory - Write a method that take a arguments and returns no value - Write a method that takes an array as an argument - Use parameter variables in a method body - Use a loop to get the computer to repeat instructions - Use a loop to iterate over the elements of an array - Use an if statement to get the computer to make a decision. - Use a variable to keep a count Copyright 2021 Arizona State University - THIS CONTENT IS PROTECTED AND MAY NOT BE SHARED, UPLOADED, SOLD, OR DISTRIBUTED. Problem Description and Given Info Write (define) a public static method named countGreaterThan, that takes an array of int, and an int as arguments and returns (as an int) a count of the number of values in the argument array that are greater than the second argument value. For example, given the following Array declaration and instantiation: fnt[]myArray=(1,22,333,400,5005,9);. countGreaterThan (myAr ray, 200) should return 3 Problem Description and Given Info Write (define) a public static method named countGreaterThan, that takes an array of int, and an int as arguments and returns (as an int) a count of the number of values in the argument array that are greater than the second argument value. For example, given the following Afray declaration and instantiation: int[]myArray=(1,22,333,400,5005,9); countGreaterThan (myArray, 200) should return 3 countGreaterThan (myArray, 9999) should return You may wish to write some additional code to test your method. Helpful Hints: - Your method will need to use a loop to iterate through the elements in the array - For each element in the array, your method must compare this value to the second argurnent value (ie we must decide if this value. should be counted) - If the array value meets the criteria (i.e. it is greater than the second argument value), then you must count it: - The last thing your method must do is to return the count