<?php $gallery = get_field('profile_gallery');
if( $gallery ): ?>
<div id="gallery">
<img src="<?php echo esc_url( $gallery['first']['url'] ); ?>" >
<img src="<?php echo esc_url( $gallery['second']['url'] ); ?>" >
</div>
<?php endif; ?>