Combine an array into a string with semicolon separator

$array = 'The','quick','brown','fox','jumps','over','the','lazy','dog.'
$array -join(';')
Details
Example