Adds a single item to the end of a list and gives you the updated list. It's perfect for growing collections like color palettes or spacing scales step-by-step.
Inputs
Name
Description
Type
Required
array
The list you want to add to
List
Yes
item
The single thing you want to add
Any
Yes
Outputs
Name
Description
Type
value
The new list with the item added
List
Array Push Example
How to Use It
Drag the Array Push into the editor.
Connect a list (like [Red, Blue, Green]) to the "array" input.
Connect a single item (like Purple) to the "item" input.
Run the graph—your output will be [Red, Blue, Green, Purple].
Tips
Match the item type to your list (e.g., don't add a number to a color list).