What is the correct way to add a value to this array?
var strings = [1, 2, 3]
strings += [5] Reference: The Swift Programming Language: Language Guide: Collection Types: Arrays
strings += [5]
All of these answers
strings.insert(5, at: 1)
strings.append(4)