I am new in programming and swift. I have an enum like this
enum City : String {
    case tokyo = "tokyo"
    case london = "london"
    case newYork = "new york"
}
Could I possibly get that city name to an array from enum raw value? I hope I can get something like this :
let city = ["tokyo","london","new york"]