Create a function that finds the index of a given item.
search([1, 5, 3], 5) ➞ 1 search([9, 8, 3], 3) ➞ 2 search([1, 2, 3], 4) ➞ -1
If the item is not present, return -1.
-1