Implement `collectGen(start, count)` using a generator that yields `count` consecutive integers beginning at `start`, collected into an array.
+ 1 hidden test run on Submit.
The generator yields start through start+count-1, collected by spreading.
Run your code to see results.