setNextRequest() question

postman.setNextRequest(“Final Step”);

What happens if “Final Step” is not within the collection ?

Does execution stop here or does it continue to the next step (collection) ?

In this case, the collection run will stop without errors. This is equivalent to postman.setNextRequest(null);

Thanks for the quick response !