Where should a newly added item go in table?

Admin tool. Table with thousands of items (users) sorted by name (from A to Z). The table has a pagination. Let's say you are on page #16 (out of 999). You are adding a new user. Where should the newly added user appear?

  1. The system should jump to page #1 and show the newly added user at the very top as a first item.
  2. The system should jump to the last page and show the newly added user at the bottom as the very last item.
  3. The system should add the newly added user to the corresponding page based on the sorting and do not jump anywhere from the current page.

Thoughts?