Transform array to collections

I have the following:
image

How can I make it to become:
Vehicle number: Test Car 2
Vehicle make: Test Car 2

If it is easier, I can accept:
vehicleNumber: Test Car 2
vehicleMake: Test Car 2

Thanks.

What you could do here, if the structure of the collection is always the same, is to use the Parse JSON module to create a new object based on the prior data

{“Vehicle number”:“{{1.vehicleNumber[2]}}”,“Vehicle make”:“{{1.vehicleMake[2]}}”}


2 Likes