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

# Reverse List

> Return a list with its item order reversed.

## Input

| Input    | Type | Required | Description                        |
| -------- | ---- | -------- | ---------------------------------- |
| **List** | List | No       | The source list. Defaults to `[]`. |

## Output

| Output       | Type | Description                       |
| ------------ | ---- | --------------------------------- |
| **Reversed** | List | A new list in the opposite order. |

`[a, b, c]` becomes `[c, b, a]`. The source list is not modified.
