You probably want to think about using a generic collection, for example a List(of String), rather than an array. It also offers you greater manipulative methods.

If the worst comes to the worst, you can simply iterate through the collection and compare the strings.

(Another alternative may be a LINQ query).