My code is not working. All I am trying to do is get the number inserted into the struct's internal array. Right now this is not working:
@IBAction func move(_ sender: Any) {
bad.numbers.insert(0, at: 0)
}
struct bad {
var numbers: [Int] = [1, 2, 3]
}