class GetAlphabetArray {
public static void main(String[] args) {
//create a class instance
// define your variable
String name = "abcdefghijklmnopqrstuvwxyz";
//call your method here
getAlphabet();
//create your first method here
}
}
// System.out.println("Inside of a void method getAlphabet");
}
class GetAlphaArray {
public static void main(String[] args) {
getAlphabet();
}
char[] = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t"}
//create your first method here
public char[] getAlphabet(){
char[] letters = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"};
return letters;
} //end of method
} //end of psvm class
} //end of class