Example: var nums:Number* = [1,2,3]; The above example declares a new variable named nums whose value is defined to consist of zero or more instances of type Number and whose initial value is [1,2,3]. The :typeName, [?,+,*], and = initializer portions of the declaration are optional, so the following is equivalent to the above: var nums = [1,2,3]; top Functions, Arrays, Expressions, and Op