Implement `groupByLength(words)` that groups an array of strings by their character length. Return an object where each key is a length and each value is an array of words with that length.
Run your code to see results.