I'm not able to assign all values of for in into an array so i'm able to print only the last one
###previouse code
for item2 in "${!TUR[@]}"; do
ARRAY="${item2}"
done
for item in "${ARRAY[@]}"; do
printf "$ARRAY \n";
done
How can i assign succesfully all elements to ARRAY variable and print out all elements?