Skip to content

Instantly share code, notes, and snippets.

@GrantJEmerson
Created November 24, 2019 17:06
Show Gist options
  • Save GrantJEmerson/e5146c2d351c89daecd18fc85030bb15 to your computer and use it in GitHub Desktop.
Save GrantJEmerson/e5146c2d351c89daecd18fc85030bb15 to your computer and use it in GitHub Desktop.
Indexing Into Randomness - SwiftMoji Entry #22
import Foundation
let buffet = ["๐Ÿ•", "๐Ÿ”", "๐ŸŒญ", "๐Ÿฅ—", "๐ŸŒฏ", "๐Ÿฅ˜"]
let dinner = buffet.randomElement()!
print("Tonight I will eat \(dinner).") // Tonight I will eat ๐Ÿ•.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment