Implement `chunkGen(arr, size)` using a generator that yields successive chunks of `size`, collected into an array of arrays.
+ 1 hidden test run on Submit.
Yielding successive size-length slices lazily chunks the array, collected with spread.
Run your code to see results.