Given what is supposed to be typed and what is actually typed, write a function that returns the broken key(s). The function looks like:
find_broken_keys(correct phrase, what you actually typed)
find_broken_keys("happy birthday", "hawwy birthday") ➞ ["p"]
find_broken_keys("starry night", "starrq light") ➞ ["y", "n"]
find_broken_keys("beethoven", "affthoif5") ➞ ["b", "e", "v", "n"]