Array FunctionsThe append, for pushing data into an array, is a Global function (see Global Functions). concat(list1, list2) merge two list type input into one new list let a = [1, 2] let b = [3, 4] let c = concat(a, b) // c is now [1, 2, 3, 4]Updated about 3 hours ago String ConditionsMap FunctionsTable of Contents concat(list1, list2)