Generate a sequence of numbers from start to end, incrementing by step each time.
start
end
step
[...counter(1, 5)]; // [1, 2, 3, 4, 5] Copy
[...counter(1, 5)]; // [1, 2, 3, 4, 5]
Generate a sequence of numbers from
starttoend, incrementing bystepeach time.