How to use wp_list_pages on a grandparent page

In the area above where it says “I need new code here” I simply grabbed the ID using get_post_ancestors like so:

$parent = array();
$parent = get_post_ancestors($post->ID);
$lastNum =  end($parent);
wp_list_pages("title_li=&child_of=".$lastNum."");