This is probably a simple question, but i couldn't find a solid answer. So i have an equation
Solve[{F[x, y] == 0, G[x, y] == 0}, {x, y}]
but i want to use the solutions as part of another function. However the solutions are in the form
(* {{x -> 0., y -> 4.}, {x -> 1., y -> 1.}, {x -> 1.5, y -> 0.}, {x -> 0., y -> 0.}} *)
Can I convert the solution to an array or otherwise store the solutions as a variable?