You need a String object of some description to hold your array of concatenated chars, since the char
type will hold only a single character. e.g.,
StringBuilder sb = new StringBuilder('a').append('b').append('c');
System.out.println(sb.toString);