Here goes the code:
const range = (start, stop) => new Array(stop - start).fill(0).map((v, i) => start + i);
What purpose does sto