diff --git a/index.html b/index.html
index 8e4e391..8d768d8 100644
--- a/index.html
+++ b/index.html
@@ -442,7 +442,9 @@ const handleRiskOutput = ({ high, pool, stress }) => {
   out.innerText += ' ' + pool.join(', ')
   out.innerText += '\nHighest: '
   out.innerText += ' ' + high + ' = '
-  out.innerText += (high < 4)
+  out.innerText += (pool.filter(d => d === 6).length > 1)
+    ? ` Wow, that's a CRITICAL SUCCESS!!`
+    : (high < 4)
     ? ' Bad. Things get worse. Take a condition.'
     : (high < 6)
     ? ' Mixed. Partial success, or success with complication'