Bash -Array -Initialisierung mehrere Zeilen

#!/bin/bash

declare -a messages=(
    "Hello"
    "World"
)

echo "${messages[@]}"
Sparkling Snail