--- title: shuffle # linktitle: description: Returns a random permutation of a given array or slice. date: 2017-02-01 publishdate: 2017-02-01 lastmod: 2017-04-30 keywords: [ordering] categories: [functions] menu: docs: parent: "functions" signature: ["shuffle COLLECTION"] workson: [] hugoversion: relatedfuncs: [seq] deprecated: false draft: false aliases: [] --- {{< code file="shuffle-input.html" >}}
{{ shuffle (seq 1 5) }}
{{ shuffle (slice "foo" "bar" "buzz") }}
{{< /code >}} This example would return the following: {{< output file="shuffle-output.html" >}}
2 5 3 1 4
buzz foo bar
{{< /output >}} This example also makes use of the [slice](/functions/slice/) and [seq](/functions/seq/) functions.