Hello, I'm trying to compare two arrays (list of strings) however I'm not sure if I'm doing it right. My code

Code:
Dim oldArr As New List(Of String)
oldArr = GetOldValues(productNameStr)

If oldArr.ToString() IsNot newArr.ToString() Then
    ...
I want to know if the last statement is right otherwise how to correct it.