Node.js - HTTP Module
Consider this code snippet:
const querystring = require('querystring');
const parsed = querystring.parse('x=5&x=10&x=15');
console.log(parsed.x);
What will be logged to the console?