How to get an array out of a nav menu if it’s a plugin?

What you have is a theme location, you need to first get the menu assigned to that location to get its items:

if( ( $locations = get_nav_menu_locations() )
    && isset( $locations[ 'omahamenu' ] ) ) {
        $menuooo = wp_get_nav_menu_items( $locations['omahamenu'] );
        var_dump( $menuooo );
}

404 Not Found

Not Found

The requested URL was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.