Design and implement routes

You are developing an ASP.NET MVC application. You have a set of requirements to create a help section for remote users. Your typical help scheme is help/desktop or help/mobile, so logically this section should be help/remote. The change board wants the links in the application to point to the default support site. Which code segment would you use?

routes.MapRoute( “remote”, “remote/help”, new { controller = “support”, action = “Index” } );
routes.MapRoute( name: “Default”, url: “{controller}/{action}/{id}”, defaults: new { controller = “Home”, action = “Index”, id = UrlParameter.Optional });
routes.MapRoute( “remote”, “help”, new { controller = “support”, action = “Index” } );
routes.MapRoute( “remote”, “help/remote”, new { controller = “support”, action = “Index” } );