This website wont let me add a screenshot keeps telling me invalid html was found.
Basically I have 4 steps.
1 - initialise a string variable (aUser) and its value is {"Title": "Edward"}
2 - initialise an array variable (someUsers) and its value is
[ {"Title": "Lyn"},{"Title": "Andy"}, {"Title": "James"}, {"Title": "Paul"}
]
3 - Append to array variable - where name is someUsers and value is aUser
4 - Compose someUsers
I guess it works it in the sense that it does append the string to the array, but that's not what I want, I want to add the string as a new item/element to the array? I hope that makes sense!