Yes, I saw it too. Do not know what causes it. Here is a workaround:
Try going to the console tab and saving the variable as a JSON string as follows:
JSON.stringify(myvar);
Then copy the results and, if necessary, analyze them elsewhere:
JSON.parse('..data goes here..')
Remember to use single quotes because JSON everywhere contains double quotes.
source share