The range operator (..) creates a range with a start value and an end value. The transformation operator (->) can be used to add a step value to a range.
The size operator ($) can be used at the beginning or end of the range. This will use the size of an expression when used with the transformation operator (->).
Examples
1..10
1..$
Range with a step value using the transformation operator