So, then...
Code:
;!
Dim $,$v,$w,$x,$y,$z
$=GetObject('WinMgmts:root/cimv2').ExecQuery('Select * FROM Win32_Process')
Dim $u[$.Count-1]
For Each $v in $
$u[$x]=$v.Name
$x=$x+1
Next
;!;!
;======code below this line provides debug output through the console
For Each $w in $u
? '$$u[' + $y + ']=' + $w
$y=$y + 1
Next
$z=Ubound($u)
? 'Number of rows in $u=' + $z
Sleep 2


KiXgolf score of 147 not counting the debug output.

My goal was to build an 1D array consisting of the names of the process running on the workstation. Thanks for the help, it would seem that I am done.

.