assignment Name Game - due tomorrow! Please help! Desperately seeking a solution! I have to determine where the vowel is in the name entered and save the remainder of the name (including the vowel) to be output in the "Name Game" parody. for instance if you enter Sam: Sam, Sam, Bo Bam Banana Fana Fo Fam Me Mi Mo Mam Sam My code is as follows: public static String lookFor(String strIn) {
boolean found=false; String suffix = new String(); int index = 0; int i, len; int j=0; String vowelsArray[] = {"a", "e", "i", "o", "u", "y"};
len = strIn.length(); for (i=0; i<len; i++){ strIn.substring(i).equalsIgnoreCase (vowelsArray[j+1]); suffix = strIn.substring(i); }