Unlock this challenge:
How can you restrict a wildcard route in Symfony to match only numeric values?
By adding a regular expression constraint like <\d+> after the route parameter name
<\d+>
By adding <int> after the route parameter name
<int>
By adding <numeric> after the route parameter name
<numeric>
By adding <number> after the route parameter name
<number>