$array = @("Test1", "Test2", "Test3") for($i = 0; $i -lt $array.length; $i++){ $array[$i] } output : Test1 Test2 Test3