How will you add the number 3 to the right side?
values := []int{1, 1, 2}
values = append(values, 3)
values.append(3)
values.insert(3, 3)
append(values, 3)