What are 'typeof' String, new String('hi'), and String('hi')

Question | May 22, 2017 | nextptr 

What is the output of calling typeof on String, new String('hi') and String('hi') as follows?

console.log( typeof String + ' '  
           + typeof new String('hi') + ' ' 
           + typeof String('hi') );

Select the correct output from given choices: