Печать строки несколько раз в JavaScript

let text = 'Hello world!';
let result = text.repeat(4);

console.log(result);
Mehedi Islam Ripon