What does the strings[1] contain after executing the following code?
char[] chars = { 'H', 'Y', 'P', 'E', 'R', '-', 'S', 'K', 'I', 'L', 'L' };
String stringFromChars = String.valueOf(chars);
String[] strings = stringFromChars.split("-");What does the strings[1] contain after executing the following code?
char[] chars = { 'H', 'Y', 'P', 'E', 'R', '-', 'S', 'K', 'I', 'L', 'L' };
String stringFromChars = String.valueOf(chars);
String[] strings = stringFromChars.split("-");Create a free account to access the full topic