word1="This is a pen"
array=( word1 )

echo ${array[0]}

これを実行すると、Thisって表示される。

array[0]にThis is a penを格納したいんだけど、どうすればいいですか?