xxxxxxxxxx
18
function setup() {
let book = {
title: "To the Lighthouse",
author: "Virginia Woolf",
year: 1927,
pages: 209
}
for (const key in book){
print(key)
let value = book[key]
print("->", value)
}
}