let text = ''; let zahl = 10; for ( let i=0; i<=zahl; i++ ) { text = text + i + ' mal 3 ist ' + i*3 + ' '; } console.log (text);