{"ScriptPreparationCode":"function makeid() {\r\n var text = \u0022\u0022;\r\n var possible = \u0022ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\u0022;\r\n\r\n for (var i = 0; i \u003C 5; i\u002B\u002B)\r\n text \u002B= possible.charAt(Math.floor(Math.random() * possible.length));\r\n\r\n return text;\r\n}\r\n\r\nwindow.parentObj = {};\r\n\r\nfor (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n\twindow.parentObj[makeid()] = new Array(makeid().length).fill(1);\r\n}\r\n\r\n","TestCases":[{"Name":"Test case 1","Code":"const newArr = [];\r\nObject.keys(window.parentObj).forEach((k, i) =\u003E {\r\n\twindow.parentObj[k].forEach(value =\u003E newArr.push(value))\r\n});","IsDeferred":false},{"Name":"Test case 2","Code":"const newArr = [];\r\nObject.values(window.parentObj).forEach((values, i) =\u003E {\r\n values.forEach(value =\u003E newArr.push(value))\r\n});","IsDeferred":false}]}