Append
Add a new value to the end of an existing array. The result is the existing array with the new value added to the end of it.
The existing array you wish to add a value to.
The value to add to the end of the existing array.
[1, 2, 3]
4
After running the event with the above options, the Variable option will be updated to [1, 2, 3, 4].
Last modified 5mo ago