Elemen cetak bash dalam array

for i in ${!myArray[@]}; do
  echo "element $i is ${myArray[$i]}"
done
Jefferson Magcuro