Write a function that returns true if exactly one word in the array differs in length from the rest. Return false in all other cases.
odd_one_out(["silly", "mom", "let", "the"]) ➞ true
odd_one_out(["swanky", "rhino", "moment"]) ➞ true
odd_one_out(["the", "them", "theme"]) ➞ false
odd_one_out(["very", "to", "an", "some"]) ➞ falseThe length of the array will always have at least three or more words.