def my_method(arr)
	binding.pry
	x = arr.all? do |num|
		puts num
  	num > 3
		"hi"
	end
	x
end

arr = [7, 0, 1]
p my_method(arr)