======Range Operator====== The Range Operator is used to create an Array of elements ranging between two values. ^ Symbol ^ [[PTPScript:Operators#Operator Types|Type]] ^ Name ^ Description ^ Example ^ | %% ... %% | Infix | Range | Creates an Array than contains a range of elements from the left term value to the right term value, inclusive | ''%% a ... b %%'' | The Range Operator can use Numbers, which it treats as integers, or Strings, of which it will use the first character. Numeric Strings are used as Numbers. The range can be ascending or descending, depending upon which term is higher in value. The Range Operator works in steps of 1. To specify the step, use the ''[[PTPScript:Functions:Range|range()]]'' function.