You can use shift
shift is a shell builtin that operates on the positional parameters. Each time you invoke shift, it “shifts” all the positional parameters down by one. $2 becomes $1, $3 becomes $2, $4 becomes $3, and so on
example:
$ function foo() { echo $@; shift; echo $@; }
$ foo 1 2 3
1 2 3
2 3