Function: Array()
Purpose: The Array() function is used to create an array from a comma-delimited list of elements.
Usage: Array(arguments)
Returns: Variant data type containing an array consisting of the elements in the comma-delimited list of arguments
Examples and Special Cases
Dim MyArray as Variant
MyArray = Array(15,16,17,18)