Order posts ascending from posts in array

You can try this

$args = array( 
    'post_type' => 'Product',
    'orderby' => "name",
    'order'  => 'ASC',
    'posts_per_page' => -1,
    'post__in' => $productIds
);