//Declare a variable named 🐰bunny and assign it to an object with the following properties: name, age, and isHappy. Set the value of name to a string, age to a number, and isHappy to a boolean.
const bunny = {
name: 'Jackey',
age: 3,
isHappy: true,
}
console.log(bunny);