PowerShell - Error Handling
What will be the output of this PowerShell script?
try {
Write-Output 'Begin'
5 / 0
Write-Output 'Finish'
} catch {
Write-Output 'Exception caught'
} finally {
Write-Output 'Finalizing'
}