Create a function that removes the first and last characters from a string.
removeFirstLast("hello") ➞ "ell"
removeFirstLast("maybe") ➞ "ayb"
removeFirstLast("benefit") ➞ "enefi"
removeFirstLast("a") ➞ "a"
If the string is 2 or fewer characters long, return the string itself (See Example #4).