Create a method called countSelected, which takes an array of integers and an integer as input parameters and returns the number of occurences of the integer in the array.
Example:
data:{2, 1, 1, 8, 1, 0}
select:1
==> 3
public int countSelected (int[] data, int select) {