
Alexandru Pescaru
6,409 Pointsplease help
what am i doing wrong?
var objects = [
{
name:'dave',
number: 50,
hair: 'black' },
{
name:'dae',
number: 50,
hair: 'black' },
{
name:'da',
number: 50,
hair: 'black' }
];
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer

Steven Parker
205,183 PointsThe instructions say that "Each object should have two property/value pairs".
But each of these objects has three property/value pairs.