public class JAVA_039 { public static void main(String[] args) { char[] Vowels={\'a\',\'e\',\'i\',\'o\',\'u\'}; System.out.println(\" The contents of the Character Array - 2Vowels are :\"); for(int i=0;i<Vowels.length;i++) System.out.println(\"\\t\\t\\t\\t\\t Vowels[\" + i + \"] = \" + Vowels[i]); } }