Home > Frontend Engineering and Javascript > Javascript Fundamentals > Objects and Key-Value Stores Show previous contentTry this exercise. Fill in the missing part by typing it in.What is the output of following code?JAVASCRIPT1var obj = {"Peter": 12, "Jane": 11} 2var pairs = Object.entries(obj) 3console.log(pairs[1])Write the missing line below.SubmitReveal answer Show following content