FunctionsconcatOn this pageconcat Function concat takes two or more lists and combines them into a single list. Examples Code Block> concat(["a", ""], ["b", "c"])[ "a", "", "b", "c",]