range Create an array containing a range of elements &reftitle.description; arrayrange mixedstart mixedend numberstep1 Create an array containing a range of elements. &reftitle.parameters; start First value of the sequence. end The sequence is ended upon reaching the end value. step If a step value is given, it will be used as the increment between elements in the sequence. step should be given as a positive number. If not specified, step will default to 1. &reftitle.returnvalues; Returns an array of elements from start to end, inclusive. &reftitle.examples; <function>range</function> examples ]]> &reftitle.notes; Character sequence values are limited to a length of one. If a length greater than one is entered, only the first character is used. &reftitle.seealso; shuffle array_fill &foreach;