range
Create an array containing a range of elements
Description
arrayrange
mixedlow
mixedhigh
range returns an array of elements from
low to high,
inclusive. If low > high, the sequence will be from high to low.
range examples
Prior to version 4.1.0 the range function
only generated incrementing integer arrays. Support for
character sequences and decrementing arrays was added in 4.1.0.
Simulating decrementing ranges and character sequences
See shuffle for another example of its use.