I have a 2-dimentional array:
testArray(0,0) = "hi"
testArray(0,1) = "there"
testArray(1,0) = "mighty"
testArray(1,1) = "dog"
testArray(2,0) = ""
testArray(2,1) = ""
testArray(3,0) = ""
testArray(3,1) = ""
I'm...