var dictionary = ["1": ["One","Two","Three"],
"2": ["A","B","C"]
]
var array = dictionary ["1"]
array!.append("Four")
print("array Count: \(array!.count) array In DictionaryCount: \(dictionary ["1"]!.count)")
//array Count: 4 array In Dictionary Count: 3
var array has append "Four",but in dictionary it does't, how to append an element in dictionary?
dictionary["1"] = array