We want it to stay in the correct order, so use `uniq` instead of `sort -u`. Here's how. ```sh x=(name name notes notes notes) printf "%s\n" "${x[@]}" | uniq #=> name notes ```