i need help understand this sentence from the Express tutorial Part 4
Note: The URL /book/create will be matched by a route like /book/:bookId (which will extract a "bookId" value of 'create'). The first route that matches an incoming URL will be used, so if you want to process /book/create URLs separately, their route handler must be defined before your /book/:bookId route.
is the first sentence trying to say that the server will respond with a single book when i request to create a book. is my interpretation wrong