It might also work as expected if you specify the Debugger object as follows:
JScript code:
var Debugger = {
"Start": new Date,
"Data": new Array(),
[...]
}
Note that you must separate each member with a comma, except for the last member:
JScript code:
var MyObject = {
"SomeProperty": "Hello world!", // used a comma here; if you omit it, a syntax error will be raised on this line
"SomeMethod": function(s) {
Messenger.DisplayToast("",s); //this sign is within the function itself, so it'll work
} // not used one here
// if you put a semicolon (;) here, a syntax error will be raised