Version: 2018.1

Description

Добавить значение value в конец массива.

И возвращает новую длину массива.

var arr = new Array ("Hello");
arr.Push("World");
// Prints "Hello", "World"
print(arr);

Note: This is javascript only. C# does not use this feature.