What will be the output of the below Script? $Array = @() $TempValue = "This is" , "a sample" , "PowerShell" , "Script" $Value =[string]::join(':', $TempValue) $Array = $Array + $Value $Array
Reveal answer
Fill a bubble to check yourself