The List()
function creates an array of values from a given number of values.
Syntax
List(value1, value2, ...)
Returns
An array of values.
Parameters
Accepts any number of values of the same type. So any number of text values, number values, concepts etc.
Examples
List("Red", "Blue", "Yellow")
/* Returns an array with the given text values */
List(1, 4, 6)
/* Returns an array with the given numbers */