```julia julia> kron([[1,2],[3,4]], [4,5]) 4-element Array{Array{Int64,1},1}: [4, 8] [5, 10] [12, 16] [15, 20] ``` as far as I can tell, the order here should be ```julia 4-element Array{Array{Int64,1},1}: [4, 8] [12, 16] [5, 10] [15, 20] ``` Or what's wrong with my mind?