Create a function that takes a string and returns the first character of every word if the length of the word is even and the middle character if the length of the word is odd.
stmid("Alexa have to paid") ➞ "ehtp"
# "e" is the middle character of "Alexa"
# "h" is the first character of "have"
stmid("Th3 0n3 4nd 0n1y") ➞ "hnn0"
stmid("who is the winner") ➞ "hihw"
N/A