Pulling in content from another page [closed]

Look into get_children()

<?php
$children = get_children( array( 'post_parent' => get_the_ID() ) );
if ( $children ) {
    foreach( $children as $child ) { ?>
        <li>
            <?php the_field( 'content', $child->ID ); ?>
        </li>
    <?php }