Please add arrays, it will solve a lot of problems, As we know Arrays are a Very powerful data Structure.
One Use case is as follows:
I've got 50 flows on my chatbot and they can be visited in any order by the user
I want to track all the flows that the user has visited and then give the user the option to go back in the reverse order
This can be easily be done by an Array, The array variable will store the path in stacked format when control jumps from one flow to another.
I want to know in which all flows the user visited and in which sequence. I want to store them seperately and not appending in same variable. This cannot be achieved through tags because tag has only one state or value.
That is why I want to use array.