FunctionsconcatenateVersion: NextOn this pageconcatenateMerges two lists.concatenate(xs:list, ys:list) -> listDescriptionThe concatenate function returns a list containing all elements from the lists xs and ys in order. The expression concatenate(xs, ys) is equivalent to [...xs, ...ys].ExamplesConcatenate two listsfrom {xs: [1, 2], ys: [3, 4]} zs = concatenate(xs, ys){ xs: [1, 2], ys: [3, 4], zs: [1, 2, 3, 4] }See Alsoappend, prepend