Array Functions

The 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]