Residential location including street, city, state, country and postal code.
a random address
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.address.address())
}
Output (formatted as JSON value)
{"Address":"53883 Villageborough, San Bernardino, Kentucky 56992","Street":"53883 Villageborough","City":"San Bernardino","State":"Kentucky","Zip":"56992","Country":"United States of America","Latitude":11.29359,"Longitude":-145.577493}
Generator to generate addresses and locations.