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