List::append()
Return a new list with the value added to the end.
[10].append(11) //-> [10, 11]
public method append<T>(this: List<T>, value: T): List<T> { __BUILT_IN_IMPLEMENTATION }