<!DOCTYPE html> <html> <script> for (var x = 1; x <= 5; x+=.5) { var y = 5 * x + 1 document.write(`x = ${x}, y = ${y}<br>`); } </script> </html>