Write a function called remove_zeroes() that takes a list of numbers and removes every occurrence of the number zero from the list. (Warning: it's easy to get this one wrong without noticing. Make sure you test your function on at least one list that has two zeroes in a row (like [1,2,0,0,3,0,4]).)