DescriptionConcatenates any number of lists of a single type into a single list of that typeAvailable InAppsAutomationsSyntaxARRAY_CONCAT(lists: List<List<T>>)ExampleARRAY_CONCAT([1,2],[3,4],[5,6]) = [1,2,3,4,5,6]