Write a function that takes three string arguments (first, last, and word) and returns true if word is found between first and last in the dictionary, otherwise false.
is_between("apple", "banana", "azure") ➞ true
is_between("monk", "monument", "monkey") ➞ true
is_between("bookend", "boolean", "boost") ➞ falseword is in the middle.