Given a string, return if a given letter always appears immediately before another given letter.
bestFriend("tesha has a pretty and a happy face", "h", "a") ➞ true
// all occurences of "h": ["tesha", "has", "happy"]
// all occurences of "h" have an "a" after it.
// return true
bestFriend("i found an ounce with my hound", "o", "u") ➞ true
bestFriend("we found your dynamite", "d", "y") ➞ false
bestFriend("tesh loves my messages", "e", "s") ➞ true