hope equivalent to python's `arr[1:-1]`. for example: ``` go arr := GetItems() fmt.Println(arr[1:len(arr)-1]) ``` we need to take arr as variable. but i want ``` go part_of_arr := GetItems()[1:-1] ```