Unlock this challenge:
Let's say I'm creating a route in my controller that needs to be called app_user_profile so that I can build links to it in a Twig template. What is the correct annotation syntax to do it?
app_user_profile
@Route("/user/profile", "app_user_profile")
@Route("/user/profile", name:app_user_profile)
@Route("/user/profile", name="app_user_profile")
@Route("/user/profile", name=app_user_profile)