Quiz

In this lesson, we will solve a quiz related to the concepts covered in the previous lesson

Write the code to accomplish the following task:

...
Press + to interact
let a = "Hello,";
let b = "is";
let c = "my";
let d = "name";
let e = "Tom";
function testResult(a,b,c,d,e){
// edit result
let result = '';
return result;
}
//expected output
// "Hello, my name is Tom"
...
Access this course and 1400+ top-rated courses and projects.