Sentence Ordering

Ruby

Given a sentence, arrange the sentence by word length from smallest to largest, and send it back.

Create a method called sentence_order that accepts a string as a parameter.

"You is a"  # => "a is You"
def sentence_order sentence end
< >