add elements to array

PHOTO EMBED

Tue May 30 2023 15:29:36 GMT+0000 (Coordinated Universal Time)

Saved by @vs #bash

my_array=()
item1="Apple"
item2="Banana"
my_array+=("$item1")
my_array+=("$item2")
echo "${my_array[@]}"
content_copyCOPY