// Full alphabet as char
char[] alphabet = {'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'};
// Trying to output my first name - But result is a number
System.out.println((alphabet[13]) + (alphabet[8]) + (alphabet[10]) + (alphabet[14]) + (alphabet[18]) + (alphabet[0]));
// Output is the first letter of my first name
System.out.println(alphabet[13]);
Question: How do I output my first name using the above method with System.out.println()? Or is there a completely another way?