How do I create a string from array of objects that have String property?
class Person {
let name: String
}
let people = [Person(name: "Sam"), Person(name: "Zoey"), Person(name: "Bil")]
let peopleNames: String = //what should be here?
peopleNames = "Sam, Zoey, Bil"