Skip to content

Instantly share code, notes, and snippets.

@marcinjahn
Created July 26, 2020 08:41
Show Gist options
  • Save marcinjahn/f78fff50029e128b1f0875fa83882109 to your computer and use it in GitHub Desktop.
Save marcinjahn/f78fff50029e128b1f0875fa83882109 to your computer and use it in GitHub Desktop.

Random values

//Random number
let random = Int.random(1...10)

//Random array element
let array = [1, 2, 3, 4]
let randomFromArray = array.randomElement()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment