Memory Management & Garbage Collection

What memory management issue might this caching implementation have?
let cache = new Map();

function process(obj) {
  if (cache.has(obj)) {
    return cache.get(obj);
  }
  
  const result = expensiveComputation(obj);
  cache.set(obj, result);
  return result;
}
Next Question (10/40)