Arrays
When finding the particular item from an array, first you need to name the array as a variable as a multiple.
<?php $projects = get_field( 'myitems' ); ?>
Then in a loop, find each item from the array
<?php foreach( $projects as $project):?>
printing an item from an array first name after it, then echo out the varible.
To do this in WordPress,
<?php foreach( $projects as $project):?> <?php $project_company = $project->post_title ; ?> <?php echo $project_company ; ?> <?php endforeach; ?>