# File lib/brakeman/processors/lib/call_conversion_helper.rb, line 68
    def process_array_access array, args, original_exp = nil
      if args.length == 1 and integer? args.first
        index = args.first.value

        #Have to do this because first element is :array and we have to skip it
        array[1..-1][index] or original_exp
      else
        original_exp
      end
    end