const leapYears = function(year) {
if (year % 4 == 0) {return true}
if (year % 4 != 0) {return false}
};
// Do not edit below this line
module.exports = leapYears;