What is the output of the code snippet given below? string s = "aeiou"; int i = 0; do { system.out.print(s.substring(i, i + 1)); i++; if (i >= 3) { i = 5; } } while (i < 5);?