Right now I have a string array that displays a string on a individual line. I would like to take a int array and display on the same line. So the entries of the array are pared in order. So yourArray[1] = number[1], yourArray[2] = number[2], etc. So I am just trying to add a the number array to labez.text = sortedArray.map { " ($0)" }.joined(separator:“\n”) line of code. Thanks.
var yourArray = [String]()
var number = [Int]()
@IBAction func store(_ sender: Any) {
yourArray.append((textA.text!))
number.append(Int(textB.text!)!)
labez.text = sortedArray.map { " \($0)" }.joined(separator:"\n")
let sortedArray:[String] = yourArray.sorted { $0.localizedCaseInsensitiveCompare($1) == ComparisonResult.orderedAscending }
}