Hi,
How are you?
I couldnt figure the invert function so, followed through with the walk through video. The test doesnt run for the last point. Please help
invert(object) {
let invertedObject = {};
for(let key in object) {
let originalValue = object[key];
invertedObject = {originalValue : key};
};
return invertedObject;
},
};