$array = 'The','quick','brown','fox','jumps','over','the','lazy','dog.'
$array -join(' ')
Uses a join to combine the strings
PS C:\> $array = 'The','quick','brown','fox','jumps','over','the','lazy','dog.'
>> $array -join(' ')
The quick brown fox jumps over the lazy dog.