{"ScriptPreparationCode":"const fetchArticles = async () =\u003E {\r\n fetch(\u0027https://jsonplaceholder.typicode.com/todos/1\u0027)\r\n .then(response =\u003E response.json())\r\n}","TestCases":[{"Name":"option 1","Code":" fetch(\u0027https://jsonplaceholder.typicode.com/photos\u0027)\r\n .then(response =\u003E response.json())\r\n .then(articles =\u003E [...articles].reverse().slice(0, 4));","IsDeferred":false},{"Name":"option 2","Code":" fetch(\u0027https://jsonplaceholder.typicode.com/photos\u0027)\r\n .then(response =\u003E response.json())\r\n .then(articles =\u003E articles.slice(-4).reverse());","IsDeferred":false}]}