ARRAY_APPEND
Description
Appends an element to the end of an array, returning a new array.
Parameters
array:array<T>- The input arrayelement:T- The element to append
Returns
array<T>- A new array with the element appended.

Appends an element to the end of an array, returning a new array.
array: array<T> - The input arrayelement: T - The element to appendarray<T> - A new array with the element appended.