{"ScriptPreparationCode":"\r\nfunction popLast() {\r\n var arr = [0,1,2,3,4,5,6,7,8,9];\r\n const element = arr.pop();\r\n return element;\r\n}\r\n\r\nfunction indexLast() {\r\n var arr = [0,1,2,3,4,5,6,7,8,9];\r\n const element = arr[arr.lenght - 1];\r\n return element;\r\n}","TestCases":[{"Name":"pop check","Code":"popLast();","IsDeferred":false},{"Name":"last-index check","Code":"indexLast();","IsDeferred":false}]}