Here is a piece of the code
System.out.println("How would you describe your lifestyle? Sedentary, Somewhat Active, Active, Highly Active?");
String lifestyle = keyboard.next();
if (lifestyle.equalsIgnoreCase("Somewhat Active"))
{
System.out.println("ok");
}
else
{
System.out.println("not ok")
}
no matter what I type I cannot get an "ok" response.