snippet of Hello function
The enclosed code prints the string "echo" followed by a newline then "echo " followed by the word "box" four times.
function echo(word, n){
let echobox = "";
for(let i = 0; i < n; i++){
echobox += echo[i] + " ";
}console.log(echobox);
console.log(echo);
}