I want to make and array that contains arrays, some are of double's, some are of int's.
This does not work:
var arrayZero = [1,2,3]
var arrayOne = [4.0,5.0,6.0]
var arrayofArrayZeroandOne: [[AnyObject]] = arrayZero.append(arrayOne)
How can I append arrays to an array so that I can get 5.0 if I write arrayofArrayZeroandOne[1][1] ?