{"ScriptPreparationCode":"var array = [1, 3, 2];\r\n\r\nfor(let i = 0; i \u003C 6; i\u002B\u002B) {\r\n\tarray.concat(array);\r\n};","TestCases":[{"Name":"Array.forEach","Code":"array.forEach(d =\u003E {\r\n \tconsole.log(d);\r\n});","IsDeferred":false},{"Name":"for(const value of array)","Code":"for(const value of array) {\r\n \tconsole.log(value);\r\n};","IsDeferred":false},{"Name":"index","Code":"for(let index = 0; index \u003C array.length; index\u002B\u002B) {\r\n \tconsole.log(array[index]);\r\n};","IsDeferred":false},{"Name":"Array.reverse \u002B reversed index","Code":"array.reverse();\r\nfor(let index = array.length - 1; index \u003E= 0; index--) {\r\n \tconsole.log(array[index]);\r\n};","IsDeferred":false}]}