

What order of messages is printed to the console?
Trace the program the way the computer would, then make your call before running anything.
const analyzeWeather = () => {
try {
console.log('Trying');
throw new Error('Storm');
console.log('Sunny');
} catch (err) {
console.log(err.message);
} finally {
console.log('Done');
}
};
analyzeWeather();