<!--
{
  "availability" : [
    "iOS: 8.0.0 -",
    "iPadOS: 8.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.10.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Swift",
  "identifier" : "/documentation/Swift/AnyBidirectionalCollection/randomElement(using:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Swift"
    ],
    "preciseIdentifier" : "s:SlsE13randomElement5using0B0QzSgqd__z_tSGRd__lF::SYNTHESIZED::s:s26AnyBidirectionalCollectionV"
  },
  "title" : "randomElement(using:)"
}
-->

# randomElement(using:)

Returns a random element of the collection, using the given generator as
a source for randomness.

```
func randomElement<T>(using generator: inout T) -> Self.Element? where T : RandomNumberGenerator
```

## Parameters

`generator`

The random number generator to use when choosing a
random element.

## Return Value

A random element from the collection. If the collection is
empty, the method returns `nil`.

## Discussion

Call `randomElement(using:)` to select a random element from an array or
another collection when you are using a custom random number generator.
This example picks a name at random from an array:

```
let names = ["Zoey", "Chloe", "Amani", "Amaia"]
let randomName = names.randomElement(using: &myGenerator)!
// randomName == "Amani"
```

> Complexity: O(1) if the collection conforms to
> `RandomAccessCollection`; otherwise, O(*n*), where *n* is the length
> of the collection.

> Note: The algorithm used to select a random element may change in a
> future version of Swift. If you’re passing a generator that results in
> the same sequence of elements each time you run your program, that
> sequence may change when your program is compiled using a different
> version of Swift.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)