Genere un método el cual acepte como argumento una matriz de cadenas y genere otra matriz del mismo orden en donde almacene en cada posición la cantidad de vocales que contiene cada palabra en la misma posición
String[] vowels = {"a", "e", "i", "o", "u"}; public int[] countVowels(String[] array) { int[] vowelsCount = new int[array.length]; for(int i = 0; i < array.length; i++) { String str = array[i]; int count = 0; for(int j = 0; j < str.length(); j++) { for(int k = 0; k < vowels.length; k++) { if(str.charAt(j) == vowels[k].charAt(0)) { count++; } } } vowelsCount[i] = count; } return vowelsCount; }