Hi My Name is Jon, hows your day going?

Here's a cool video One Piece.

let num1 = 5; let num2 = 10; let sum = num1 + num2; console.log("The sum is: " + sum); let radius = 5; let area = Math.PI * Math.pow(radius, 2); console.log("The area of the circle is: " + area); let randomNumber = Math.floor(Math.random() * 10) + 1; console.log("The random number is: " + randomNumber); let celsius = 30; let fahrenheit = (celsius * 9/5) + 32; console.log("The temperature in Fahrenheit is: " + fahrenheit);