Create a function that removes the first and last characters from a string.
removeFirstLast("hello") ➞ "ell" removeFirstLast("maybe") ➞ "ayb" removeFirstLast("benefit") ➞ "enefi"
N/A