Hi,
I have a List like this (a large one in practical)

.... A B
1 cat dog
2 rat cat
3 bat cat
4 cat rat

At the bottom I want to generate an array which gives what are the text entries of this list.(ignore multiple occurrences)

so the answer should be

cat
rat
bat
dog

how to do this?