In swift, in a loop managed by an index value that iterates, I want to create a variable which has the variable name that is a concatenation of \"person_\" and the current l
let name = "person_\(index)"
then add name to a mutable array declared before the loop.
Something like that?