How to change the order of the Front Page so it doesn’t appear first

Thank you @WebElaine for the tips about using a child theme. I found the code that put the Home link first. The file was located in /wp-content/themes/vantage/inc and file extras.php

function vantage_page_menu_args( $args ) {
    $args['show_home'] = false;
    return $args;
}

Had to change $args['show_home'] = false; to false.