Spot the missing required property in an object literal.
let user: { name: string; age: number } = { name: "Bob" };
What is the bug in this code?