How to get a random element from an array in Swift

Overview

In Swift, we can get a random element from an array by using randomELement(). If the array is empty, nil is returned.

Syntax

arr.randomElement()

Parameters

This method does not take any parameters.

Return value

This method returns an element from the array arr, picked at random.

Example

// create arrays
let numbers = [1, 3, 10, 4]
let techCoys = ["Google", "Amazon", "Netflix"]
// get random elements
let randomNum = numbers.randomElement()!
let randomTechName = techCoys.randomElement()!
// print random elements
print(randomNum)
print(randomTechName)

Explanation

In the above code snippet:

  • Line 2 and 3: We create arrays numbers and techCoys.
  • Line 5 and 6: We call the randomElement() method on the arrays we created, and store the elements inside variables randomNum and randomTechName.
  • Line 8 and 9: We print the results.
New on Educative
Learn to Code
Learn any Language as a beginner
Develop a human edge in an AI powered world and learn to code with AI from our beginner friendly catalog
🏆 Leaderboard
Daily Coding Challenge
Solve a new coding challenge every day and climb the leaderboard

Free Resources