Let say that we have an array of strings: var cities: [String] = [“San Francisco”, “Denver”]; You can change one string elements of this array given an index. In this case we change from “San Francisco” to Miami: cities[0] = “Miami”; Now, let assume we wish to print the last letter of the first […]