Built-in FunctionsconcatOn this pageconcat Functionconcat takes two or more lists and combines them into a single list.Examples> concat(["a", ""], ["b", "c"])[ "a", "", "b", "c",]