Getting of a list of dictionaries keys in Swift

let dic: [Int : String] =
   [1 : "one"2 : "two"]
let keys = dic.keys
//keys is [1, 2]