random_shuffle
Randomize the order of items in a list by returning a new shuffled list.
Instructions
Return a new list with items in random order.
Args: items: List of items to shuffle
Returns: New list with items in random order
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |