以下のコードの戻り値の型として正しいものはどれですか? ```typescript function findUser(id: number) { if (id === 1) { return "田中"; } return undefined; } ```