Yes. In the editor, you can add breaks by clicking next to the line where you want it to break. Then you can watch the variables in the right panel. If you put a break inside an iterator (loop), it should break during each iteration, nd you should be able to see the variable value changing. The line where you add the break will not have executed yet. So in this example, "range" is still not defined yet.
