diff --git a/src/blocks/scratch3_sensing.js b/src/blocks/scratch3_sensing.js
index 1200786e5..9689e76c6 100644
--- a/src/blocks/scratch3_sensing.js
+++ b/src/blocks/scratch3_sensing.js
@@ -143,8 +143,12 @@ class Scratch3SensingBlocks {
         ));
 
         if (currentlyAsking) {
-            this.runtime.emit('SAY', stopTarget, null, '');
-            this.runtime.emit('QUESTION', null);
+            this.runtime.emit('SAY', stopTarget, 'say', null);
+            if (this._questionList.length > 0) {
+                this._askNextQuestion();
+            } else {
+                this.runtime.emit('QUESTION', null);
+            }
         }
     }