const bugging = `{ "bug":["Google Map not aligned properly and its displayed on home page rather than contact page","One function is not working or not defined properly " ], "feature":["Can add better slider ", "Add animations to help user to get good idea of product"], "accessibility":["Not responsive enough and too much to read to get info of product "] }` const buggedJson = JSON.parse(bugging); for(const key in buggedJson) { if(buggedJson.hasOwnProperty(key)){ const display = buggedJson[key]; console.log(`${key}:${display[0]}`); } }