怎么把俩随机数都列出来而不相加呢?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Array对象 </title>
<script type="text/javascript">
document.write(Math.round(Math.random()*10)+Math.round(Math.random()*10));
</script>
</head>
<body>
</body>
</html>