greet
i wrote an simple PowerShell script to store simple massage in variable ,and display the massage with parameter , it work pretty well.
but when i add multiple value in the variable 
i can't call the specific variable with parameter
code :
[Parameter()]
[string]
$ParameterName.$var = "".Get-Variable -name $ParameterName -ValueOnly
it should display $var's value
problem is can i display the variable with multiple value ? for example
how can i display the $var[0] with the same method ?

