'Building a simple Overpass Turbo search query for amenity

I've read though the documentation but still a little confused - I would like to build a simple query for example all fuel stations within an area and just output to a csv the name, brand and lat / long only. Eg I would like something like this:

XYZ Service Station, Shell, -33.8042874, 18.872144

SO far I am using this but not really getting the output I would like.

[out:csv(::id,name,::lat,::lon; false; ",")]
[bbox:{{bbox}}];
nwr[amenity=fuel];
out center;


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source