Selenium Java - JavaScriptExecutor
What will be the output of the following Selenium Java code snippet?
Object result = driver.executeAsyncScript(
"var callback = arguments[0]; setTimeout(() => callback('done'), 500);");
System.out.println(result);