public static void loopRecursive(String[] thisArray) { if (thisArray.length <= 0) { return; } System.out.println(thisArray[0]); loopRecursive(Arrays.copyOfRange(thisArray, 1, thisArray.length)); }