Implement `runCounter(start, times)` that creates an internal counter starting at `start`, calls the increment function `times` times, and returns the final counter value. (This exercises building and using a closure internally.)
Run your code to see results.