Can someone please explain me or provide any documentation why "compose" in "apply to each" behave like an array and not just a string? I would expect that "compose" result in this example will return "3" but for some reason returns an array of "[1, 2, 3]".
Why? How from string action can became array?
I've seen it in numerous blog posts as a time saver instead of using "append to variable", but never understood why "compose" behave like this.
Example:
Input: [1,2,3] Output: [1,2,3]
