var numbers = [21, 34, 54, 12] print("Before Append: (numbers)") // using append method numbers.append(32) print("After Append: (numbers)")