package main import ( "fmt" ) func main() { slc := []string{"a", "b", "c", "d", "e", "f", "g", "h"} itemsToPush := []string{"i", "j", "k", "l"} fmt.Println(slc) slicePush(slc, itemsToPush) fmt.Println(slc) } func slicePush(a, b []string) { for ii := range b { for i := 0; i < len(a); i++ { if i+1 < len(a) { a[i] = a[i+1] } else { a[i] = b[ii] } } } }