I want to create an array like so
array=(
"element1 with "quoted string""
"element2 without double quoted string"
"element3"
)
After running the code it outputs
echo ${array[0]}
element1 with quoted.
I'm trying to include the quotes in the echo'd output. How do I do this?