What does the following code snippet return?
const map = new Map(); const returnVal = map.set(1, 'one');
the map object
undefined
'one'
1