Imagine the following program that draws two rectangles, where the variables ```width1``` and ```width2``` keep track of the widths of the two rectangles, and ```width2``` is dependent on ```width1```:
var width1 = 12;
var width2 = 2 * width1 + 5;
rect(50, 50, width1, 10);
rect(50, 80, width2, 10);
If we change the initial value of ```width1``` to $6$, what will be the numeric value of the expression stored in ```width2```?
[[☃ radio 1]]