Generates a sequence of numbers from start to end inclusive.
If end > start and no step is provided, step defaults to 1.
If end < start and no step is provided, step defaults to -1.
Parameters
start: number
The first number in the sequence
end: number
The last number in the sequence
Optionalstep: number
Optional step between numbers (default: inferred from start/end)
Generates a sequence of numbers from start to end inclusive. If end > start and no step is provided, step defaults to 1. If end < start and no step is provided, step defaults to -1.