以下のコードで`currentStatus`に代入できる値はどれですか? ```typescript type Status = "loading" | "success" | "error"; let currentStatus: Status; ```