$cars = \"bmw\",\"audi\",\"volvo\",\"vw\" echo $cars.length
returns 4, but
$cars = \"bmw\"
returns 3 because it
declare you array as:
$car = array("bmw")
EDIT
now with powershell syntax:)
$car = [array]"bmw"