Get specific page parent

Products > Bikes > Bianchi > Road > Oltre XR.2 Dura Ace Di2

I am trying to get parent for meta title like that:

Oltre XR.2 Dura Ace Di2 | Bikes

Tried followings:

$page->parents()->first()->title(); // Road

$page->parents()->last()->title(); // Products

I want to get the Bikes parent that after root. How can i do that?

Is there any function like that?

$page->parent(n)->title();

Solution found with nth(n) function

$page->parents()->nth(1)->title();

Thanks!