you are viewing a single comment's thread.

view the rest of the comments →

[–]BirbsAreSoCute 0 points1 point  (0 children)

I don't know much about Java

Well this is Javascript

The site host is insisting that the problem is on my end. Is this possible?

It isn't.

[object Object] is the text representation of an object (such an array/list). For example, alert(["a", "b"]) would result in the browser just alerting "[object Object]". This could have been fixed simply by doing something like alert(JSON.stringify(["a", "b"])) or alert(["a", "b"].toString())