PowerShell - Error Handling
What will be the output of this PowerShell script?
try {
throw 'Error occurred'
Write-Output 'This will not run'
} catch {
Write-Output "Caught: $_"
}