Random Painting

Code:
<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div class="topbar">
<?php
include 'navbar.php';
?>
</div>
<div class="paintings">
<?php
//ex 12.2 part B
//sends newsletter to all subscribers
echo '<h1>Random Painting</h1>';
/* a rather silly way to approach this particular set of pictures
$myPics = array('1.jpg', '2.jpg', '3.jpg', '4.jpg', '5.jpg', '6.jpg', '7.jpg', '8.jpg', '9.jpg', '10.jpg', '11.jpg', '12.jpg', '13.jpg', '14.jpg', '15.jpg', '16.jpg', '17.jpg', '18.jpg', '19.jpg');
$randPic = array_rand ($myPics, 1);
echo $randPic;
*/
$randPic = rand(1, 19);
echo '<img src="img/'.$randPic.'.jpg">'
//echo '<br>';
?>
</div>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex040.php");
?>
</div>
</body>
</html>