VB.NET

This statement compiles just fine:

Dim NumbersList() As Integer = (12, 32, -3, 114, 543)

But this one will not:

Dim StringsList() As String = ("make", "it", "work", "please")

I get a ')' expected at the first comma, any ideas why?