I have an array of objects like this:
object[] test = {
"Rock Parrot",
"Crimson Rosella",
"Regent Parrot",
"Superb Parrot",
"Red Lory",
"African Emerald Cuckoo",
1,2,3
};
How do i filter this array and get only an array of strings.
Thanks