const Name = "Dimas";
let Age = 21;
const Country = "Russia";
const FavoriteLanguage = "C#/JS/Python";
console.log ('Hello, my name is ' + Name + '.' + ' Me ' + Age + ' years. I am from ' + Country + ', my favorite languages are: ' + FavoriteLanguage + '.')
Hello, my name is Dimas. Me 21 years. I am from Russia, my favorite languages are: C#/JS/Python.
By samids