require 'json'

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

json_data = data.to_json
puts json_data