String currentString = "Custom Section";
String[] splitarray = currentString.split(" ");
separated[0]; // this will contain "Custom"
separated[1]; // this will contain "Custom"
//assign to string variable
for (int i = 2; i < array.length; i++) {
secondName = secondName + " " + array[i];
}