Create a function that searches for the index of a given item in an array using recursion. If the item is present, it should return the index, otherwise, it should return -1.
Search({1, 2, 3, 4}, 3) ➞ 2
Search({2, 4, 6, 8, 10}, 8) ➞ 3
Search({1, 3, 5, 7, 9}, 11) ➞ -1-1.