I have some json objects that looks as follows

and i want them to be all merged in an array like :
data: [
{
nstaskid: “...”,
awb: “….”
},
{
nstaskid: “...”,
awb: “….”
},
]
i tried to use javascript evalutor , loop over the records and push them in an array and write this record array , but it didn’t work.
Can you please help me with that .