class Planet { var list:[String] init(list:[String]) { self.list = list } subscript(index:Int)->String { return list[index] } }