JAVA
In this exercise, you are given a phrase that starts with ‘A’. If the word after ‘A’ begins with a vowel, add an ‘n’ after the ‘A’, otherwise, return the phrase as is.
The character in the 2nd position will be always be the one we need to check. We then check if that character is a vowel, and replace the string as required.