<pre class="brush:xquery">
[], (: empty array :)[ (1, 2) ], (: array with single member :)[ 1 to 2, 3 ] (: array with two members; same as: [ (1, 2), 3 ] :)
</pre>
<pre class="brush:xquery">
array { }, (: empty array; same as: array { () } :) array { (1, 2) }, (: array with three members; same as: array { 1, 2 } :)array { 1 to 2, 3 } (: array with three members; same as: array { 1, 2, 3 } :)
</pre>