How do IMerge arrays

Hello there! ,

I have 2 querys that have excatly same row number.
I need to pass this 2 querys with raw csv table.
but I'm sutck at joining two querys with commas (,)

here are my screenshots.

reviewcsv
image
sentimentcsv
image

I need to join them together so my api can read them in raw csv format.

here is my api request

how :smiley:

this is sentimentcsv's return value
image

this is reviewcsv 's return value
image

I need to get them together like for example
"0 : 123 , 45.sentiment 1"
"1 : not so bad!, positive"
"2 : 49 review, 123" ... etc

const review=reviewcsv.data
const sentiment=sentimentcsv.data
const combined=[]

for (let i=0; i < review.length; i++)
{
        combined.push(review[i] + "," + sentiment[i]);
    
}
return combined

Nevermind figured it out with javasceipt query :smiley:

image