var someDictionary: [keyType:valueType] = [key:value]
print(someDictionary[key]) // 결과 옵셔널로 (value) 출력
랜덤 키 가져오기
someDictionary.keys.randomElement()
//중복 제외
var resultRandom: [String] = []
while resultRandom.count < 99 {
let appendValue = someDictionary.keys.randomElement()!
if !result.contains(appendValue) {
result.append(appendValue)
}
}