Write Your JavaScript Code Here

const obj = { 10: 'arry', 21: 'barry', 23: 'carry' }; // Creates an object with numeric keys and corresponding string values console.log(Object.entries(obj)[2]); // Retrieves the third entry of obj as an array [key, value] and logs it to the console

Output: