<html><body><script>
for (let speed = 30; speed > 25; speed--) {
  console.log(`Bieżąca prędkość wynosi ${speed} km/h.`);
}
</script></body></html>
