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