_>
function helloWorld(text){
for(let i = 0 ; i < 10 ; i++){
console.log(`${text}`);
}
}
helloWorld('Hello World');