Write a function that returns a function.
Implement def make_counter(start, count):. The function must create an inner counter function that retains its current value through closure state, invokes it count times, and returns the resulting values as a list.
start is an integer, and count is a non-negative integer. Return a list containing count consecutive integers beginning at start. If count is zero, return an empty list.
def make_counter(start, count):