Array values, set all to 0 [closed]

const clicker = {
TC:0,
CC:0,
FM:0,
};

function prestige(){
//Object.values(clicker)==0//
}

I have a prestige function that needs to reset every value in an array at once.
I can log the name or the values as an array, but any attempt to alter them is met with errors.