Q2
Single choice
Refer to code below:
Let first = `who';
Let second = `what';
Try{
Try{
Throw new error(`Sad trombone');
}catch (err){
First ='Why';
}finally {
Second ='when';
}
catch(err) {
Second ='Where';
}
What are the values for first and second once the code executes ?