You could specify type like this:
[string[]] $a = "This", "Is", "a", "cat"
Checking the type:
$a.GetType()
Confirms:
IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True True String[] System.Array
Outputting $a:
PS C:\> $a
This
Is
a
cat