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

# Repeat Elements

> Repeat a sequence of list items a chosen number of times.

## Inputs

| Input        | Type   | Required | Description                                 |
| ------------ | ------ | -------- | ------------------------------------------- |
| **Elements** | List   | No       | The sequence to repeat. Defaults to `[]`.   |
| **Count**    | Number | Yes      | A non-negative whole number of repetitions. |

## Output

| Output   | Type | Description                  |
| -------- | ---- | ---------------------------- |
| **List** | List | The repeated input sequence. |

For example, repeating `[a, b]` three times returns
`[a, b, a, b, a, b]`. A count of `0` returns an empty list.
