Double quotes, on the other hand, can handle amazing things like interpolation. That way, we can make calculations or insert variables into strings. Wild!

See that? The #{} expression, which we call interpolation, allows us to insert almost anything into strings. However, it only works with double quotes ("").

Hmm, maybe that's not the right way to use interpolation?