Create a function that takes a string of words and returns the highest scoring word. Each letter of a word scores points according to it's position in the alphabet: a = 1, b = 2, c = 3, etc.
word_rank("The quick brown fox.") ➞ "brown"
word_rank("Nancy is very pretty.") ➞ "pretty"
word_rank("Check back tomorrow, man!") ➞ "tomorrow"
word_rank("Wednesday is hump day.") ➞ "Wednesday"