DocumentationLanguagefunctionsConcatconcat Function concat takes two or more lists and combines them into a single list. Examples > concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ]CompactContains