diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..de7fac4e68 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -58,9 +58,24 @@
-
+ const key = document.querySelector(`.key[data-key="${e.keyCode}"]`);
+ key.classList.add('playing');
+ })
+ // attaching all the events at the start
+ const keys = document.querySelectorAll('.key');
+ keys.forEach((key) => {
+ key.addEventListener('transitionend', function(e){
+ if(e.propertyName !== 'transform') return;
+ key.classList.remove('playing');
+ })
+ })
+