class Main { public static void main(String[] args) { for(int i=0; i<26; i++){ System.out.print(getAlphabetsAZ()[i]); } } public static char[] getAlphabetsAZ(){ char[] alphabetArr=new char[26]; int x=0; for(int i=97; i<123; i++){ alphabetArr[x]=(char)i; x++; } return alphabetArr; } }