以下のコードで`result`の値はどうなりますか? ```typescript let value: string | null = null; let result = value ?? "デフォルト値"; ```