$string1 = "The quick brown fox"
$string2 = "jumps over the lazy dog"

$result = $string1 + " " + $string2

Write-Host $result

# Result
The quick brown foxjumps over the lazy dog