I don’t think you can do that with base Array: arrays with dimension >1 cannot be resized, so you need to specify the size when it is created. What you can do of course is start with an array of size 0xn and use hcat to “grow” the array.
Maybe there’s a fancy array type that can do this concatenation without allocation… Actually even a DataFrame might do the job, depending on your needs…