require 'json'

data = {
  name: "Alice",
  age: 30,
  hobbies: ["reading", "cycling", "coding"]
}

pretty_json = JSON.pretty_generate(data)
puts pretty_json