How do I append a list of simple arrays together while still keeping them as separate arrays within a larger structure?
I need to compose a body of arrays in this format:
[
[
a1,
a2,
a3,
a4,...
],
[
b1,
b2,
b3,
b4,...
]
]
Each array is being generated within a for_each loop, so I wanted to use append to array variable, but I am getting the following error: