Problem 1. Create a variable of type string and try to add a number to it.

let str = "string";
console.log("String ", str);    // String string
str += 56;
console.log("String with number: ", str);    // String with number: string56