2) Syntax (arrays)

1for i in *
2do
3    read -a myArray <<< "$i"
4    echo ${myArray[1]}
5done