I\'m having trouble looping through an object and changing all the values to something else, let\'s say I want to change all the values to the string \"redacted\". I need to
try
var superSecret = function(spy){ Object.keys(spy).forEach(function(key){ spy[key] = "redacted" }); return spy; }