02ASAndrew Sittner (Andrew Sittner)Can someone help me understand what this code does?function learning(x,y) { return function inLearning(z){ return console.log(x) + console.log(y) + console.log(z); }; };Nov 17, 2019HM