For example, in Bash: ``` $ a=(one two three) $ echo ${a[@]:1:2} two three ``` but in Zsh: ``` % a=(one two three) % echo ${a[2,3]} two three ```