public String firstElement(String[] array) { if (array.length >= 1) { return array[0]; } else { return ""; } }