WP_Query – Adding “offset” posts to the end of the loop

No need to have two queries, you can just reuse the same post data by resetting the current post position and running the loop again: $wp_query->current_post = 2;

you’d have to do this twice to achieve what you’re asking, and stop it the second time at the third post.