The browser storage localStorage is not available. Either your browser does not support it or you have disabled it or the maximum memory size is exceeded. Without localStorage your solutions will not be stored.

Several variables

Several variables are declared and initialized in 2 program lines:
let city = 'Lubumbashi';
let country = 'Congo';

Exercise

Declare a variable flower and assign it the value 'rose'. Declare a second variable tree and assign it the value 'maple'.
let flower = 'rose';
let tree = 'maple';

loving