Part A. Write the Group method howManyWithXVowels(), as started below. howManyWithXVowels will receive an integer and determine if each word has more than that number of vowels.
If the list is ["about","dogs","123456","A"]
The call howManyWithXVowels( 1 ) would return 3
The call howManyWithXVowels( 3 ) would return 1
Method howManyWithXVowels will return the number
of Words with at least x vowels
public int howManyWithXVowels( int x )