What is the result of the following code?
const data = { x: 5, y: 10, z: 15 }; console.log(Object.keys(data).length);
2
3
5
15