以下のコードの実行結果はどうなりますか? ```typescript let user: { name: string; email?: string; } = { name: "山田" }; console.log(user.email); ```