PowerShell - String Operations
What is the issue with this PowerShell code snippet?
$part1 = "Hello"
$part2 = "World"
$combined = $part1 + * $part2
Write-Output $combined
