Complete this statement to keep track of a "count" variable using the useState Hook.
import { useState } from "react";
function KeepCount() {
const [@(5), @(8)] = useState(0);
}
import { useState } from "react";
function KeepCount() {
const [count, setCount] = useState(0);
}