I would like to create an array of strings that is created from the items in the clipboard.

Example text:
Code:
Item Name ABC
Item Name 123
Item Name QWE
Item Name 456
Say the above cells data I've copied into the clipboard. I'd like to have a loop look at each item in my clipboard and assign it to an array, say myStrArray.

Basically i'll have:
Code:
Item Name ABC = myStrArray0
Item Name 123 = myStrArray1
Item Name QWE = myStrArray2
Item Name 456 = myStrArray3
Eventually I will be using this in a bigger script but I just cant find/figure out how to do this. Could anyone help me? Your help is greatly appreciated.
I have searched around the net for this and can't find it. Is this possible?