PowerShell - Error Handling
What will be the output of this PowerShell script?
try {
Get-Item 'C:\nonexistentfile.txt'
Write-Output 'File found'
} catch {
Write-Output 'File not found'
}