https://stackoverflow.com/questions/50027770/fish-shell-how-to-append-an-element-to-an-array
1set -l array "tiny tim" bob2set -l children joe elias matt3
4echo $children5for i in (seq 2)6 set children (string join " " $children $array[$i])7end8echo $children