The Walking DeadWhat is the output of the following console.log? const a = { something: 1, someOtherThing: 2 }; const deleteSomething = input => { delete input.something; return input.something; }; const result = deleteSomething(a); console.log(result); Select one:1An error is thrownundefinedSomething different is loggedSubmit