Bash iterate over list file

FILES="/path/to/files*"
for FILE in $FILES ; do echo $FILE ; done
Annoying Armadillo