I'm trying to add an new array to an existing array.
For example the existing array is
[[1,2,3], [4,5,6]]
And now I have a new array which is
[7,8,9]
How can I get
[[1,2,3],[4,5,6],[7,8,9]]
I tried to use the spread operator, but haven't figured it out.
Thanks