"Client time (UTC): ' + new Date().toISOString());"+
Need to also move the ' (ending single quote) to the end of Date().toISOString() for the Alert box to show up.
From: "Client time (UTC): ' + new Date().toISOString());"
To: "Client time (UTC): + new Date().toISOString()');"