So... this doesn't work.
#include <Array.au3>
Local $aTest1[3] = ["Thing1 Thing2 Thing3","Thing4 Thing5 Thing6","Thing7 Thing8 Thing9"]
Local $aTest2[3][3]
For $i = 0 to UBound($aTest1)
$aTest2[$i] = StringSplit($aTest1[$i]," ")
Next
_ArrayDisplay($aTest2)
It seems that a 2-dimensional arra...