Server Connect output to an array

How can I add the output of a server connect to an array.

I guess this is a simple one, but can’t get my head around Wappler’s workflow. This is quite easy in JS with a loop, I assume something similar is possible in Wappler?

So far I have added this to the SC as per: Add data from a repeat into an array

dmx-on:done="myArray.addUniq(serverconnect.data.query1.values(Answer))

But this returns all values in one entry. Should I add a split function or a repeater in there somehow? What would be the most simple/elegant way?

It was a simple one:

<dmx-array id="myArray" dmx-bind:items="serverconnect.data.query1.values('Answer')"></dmx-array>