First you have the line "VIKKYHACKS". Then you turn it into an array with the following
char[] name = "VIKKYHACKS".toCharArray();
"char [] name =" part, assigns a variable name to our char array. What has a char array (char [])
Arrays have a variable named length referenced using .length. Used in the second line.
name.length
source share