> ## 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.

# Insert at Index

> Insert one or more items at a chosen list position.

**Insert at Index** places new items at a zero-based position and returns the
resulting list.

## Inputs

| Input     | Type           | Required | Description                                 |
| --------- | -------------- | -------- | ------------------------------------------- |
| **List**  | List           | No       | The starting list.                          |
| **Items** | Repeatable any | No       | Items to insert, in the order shown.        |
| **Index** | Number         | Yes      | The zero-based position at which to insert. |

## Output

| Output     | Type | Description                       |
| ---------- | ---- | --------------------------------- |
| **Result** | List | The list with the items inserted. |

For example, inserting `b` and `c` at index `1` in `[a, d]` produces
`[a, b, c, d]`.

<Warning>
  This action is visible in the workflow editor, but the current server package
  does not include a matching implementation.
</Warning>
