What will the URL segment look like based on the following call to the Router.navigate method when goToUser is passed the value 15?
export class ToolsComponent {
constructor(private router: Router) {}
goToUser(id: number) {
this.router.navigate(['user', id]);
}
}