When will the code inside finally block be executed in a try-catch statement?
if there is an error, it won't execute at all
between the try and catch blocks
after the try and catch blocks
when the finally block overrides the catch block and executes in its place Official documentation: try-catch