import Foundation
let arr = ["swift", "c", "c++", "python", "java", "rust"]
// Seeds the random number generator using the current time
srandom(UInt32(NSDate().timeIntervalSince1970))
// Picks a random index from the array and prints the selected item.
print(arr[random() % arr.count]);
/*
run:
java
*/