to start a 'omikuji' print("Omikuji start!!") for count in 1...3 { print(count) sleep(1) } //To create a seed for the random number from the number of seconds of the current time srandom(UInt32(NSDate().timeIntervalSince1970)) let player = ["Daikichi", "Kichi", "Cyukichi", "Kichi", "Kyou"] print(player[random() % player.count]) 21 —