How can I make this object a string with variables? The variable should point to a string that includes name, address, city, state, and zip code.
const restaurant = {
name: 'Ichiran Ramen',
address: ${Math.floor(Math.random() * 100) + 1} Johnson Ave,
city: 'Brooklyn',
state: 'NY',
zipcode: '11206',
}