Hong-Phuc Bui
2025-10-17 85e9b6730a1c181d3c0d4a1a11ea3648dfac717c
textbased-programms/dice-simulation.js
@@ -16,7 +16,7 @@
   let face = Math.floor(Math.random() * (max - min + 1) + min );
   let path = `${IMG_DIR}/${face}.png`;
   let img = `<img width="20px" src="${path}" />`;
   let img = `<img width="50px" src="${path}" />`;
   terminal.clear();
   terminal.printh(img);
};