Write a function that divides a phrase into word buckets, with each bucket containing n or fewer characters. Only include full words inside each bucket.
bucketize("she sells sea shells by the sea", 10)
➞ ["she sells", "sea shells", "by the sea"]
bucketize("the mouse jumped over the cheese", 7)
➞ ["the", "mouse", "jumped", "over", "the", "cheese"]
bucketize("fairy dust coated the air", 20)
➞ ["fairy dust coated", "the air"]
bucketize("a b c d e", 2)
➞ ["a", "b", "c", "d", "e"]
[]n, but to return the entire given phrase bucketized (if possible). So, for the specific case of "by" the only word with a proper length, the phrase can't be bucketized, and the returned array has to be empty.