What is the final action performed by this code?
try
{
fibonacci();
}
catch (IllegalArgumentException illegal)
{
System.out.println("Bad Argument!");
}
catch (ArrayIndexOutOfBoundsException illegal)
{
System.out.println("Array Out of Bounds!");
}
finally
{
System.out.println("Done")
}
There are no hints for this question