Concept
Code snippet
// Declare in the global scope // All functions will have access to this variable let myRandomNumber; function setup() { createCanvas(300, 400); myRandomNumber = random(255); // How can we find out what a variable's value is? print() let myRoundedNumber = round(myRandomNumber); print('myRandomNumber = ' + myRandomNumber); print('myRoundedNumber = ' + myRoundedNumber); }