> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Append to List

> Add one or more items to the end of a list.

**Append to List** preserves the existing order of a list, then adds each new
item at the end.

## Inputs

| Input     | Type           | Required | Description                          |
| --------- | -------------- | -------- | ------------------------------------ |
| **List**  | List           | No       | The starting list. Defaults to `[]`. |
| **Items** | Repeatable any | No       | Items to append, in the order shown. |

## Output

| Output     | Type | Description                                   |
| ---------- | ---- | --------------------------------------------- |
| **Result** | List | The original items followed by the new items. |

For example, appending `3` and `4` to `[1, 2]` returns `[1, 2, 3, 4]`.
