Foreach displays from last to first

Why wouldn’t you just pull them in the order you need instead of reversing the array?

$args = array(
  'post_type' => 'attachment',
  'posts_per_page' => -1, // correct key is posts_per_page, not numberposts
  'orderby' => 'date'
  'order' => 'ASC',
  'post_parent' => $post->ID
);

$attachments = get_posts( $args );