public class Str2 { public static void main(String[] args){ char[] b = {'s', 'u', 'n'}; String str = new String(b); System.out.println(str); } }